Commit 1a73d50c authored by Andrey Filippov's avatar Andrey Filippov

snapshot

parent 92c178fd
...@@ -110,7 +110,7 @@ public class CalibrationIllustrationParameters { ...@@ -110,7 +110,7 @@ public class CalibrationIllustrationParameters {
public String [] sourceFolders = new String[num_source_folders]; public String [] sourceFolders = new String[num_source_folders];
public String destinationFolder = ""; public String destinationFolder = "";
// if both (seq_len <= 0) && (seq_gap <= 0) will create a single-level directories // if both (seq_len <= 0) && (seq_gap <= 0) will create a single-level directories
public double inter_gap = 1.0; // seconds between series public double inter_gap = 0.025; // seconds between scenes, default 1.5 of 1/60 sec
public int seq_len = 0; // sequence length public int seq_len = 0; // sequence length
public boolean two_level_dirs = true; public boolean two_level_dirs = true;
public int max_lwir_gap = 0; // tolerated short-gap size, 0 - disabled public int max_lwir_gap = 0; // tolerated short-gap size, 0 - disabled
...@@ -520,7 +520,7 @@ public class CalibrationIllustrationParameters { ...@@ -520,7 +520,7 @@ public class CalibrationIllustrationParameters {
gd.addChoice("Copy/move/link mode", copy_modes, copy_modes[copy_mode], gd.addChoice("Copy/move/link mode", copy_modes, copy_modes[copy_mode],
"Copy mode. Hard links are possible only for the same disk"); "Copy mode. Hard links are possible only for the same disk");
gd.addNumericField("Minimal gap between series", this.inter_gap, 4, 6,"s", gd.addNumericField("Maximal gap between scenes", this.inter_gap, 4, 6,"s",
"Series will be split if the time gap between scenes exceeds this value"); "Series will be split if the time gap between scenes exceeds this value");
gd.addNumericField("Sequence length", this.seq_len, 0,3,"scenes", gd.addNumericField("Sequence length", this.seq_len, 0,3,"scenes",
"Limit sequence length if >=0 "); "Limit sequence length if >=0 ");
......
...@@ -39,7 +39,7 @@ public class FootageOrganize { ...@@ -39,7 +39,7 @@ public class FootageOrganize {
gd.addChoice("Copy/move/link mode", CalibrationIllustrationParameters.copy_modes, CalibrationIllustrationParameters.copy_modes[illustrationParameters.copy_mode], gd.addChoice("Copy/move/link mode", CalibrationIllustrationParameters.copy_modes, CalibrationIllustrationParameters.copy_modes[illustrationParameters.copy_mode],
"Copy mode. Hard links are possible only for the same disk"); "Copy mode. Hard links are possible only for the same disk");
gd.addNumericField("Minimal gap between series", illustrationParameters.inter_gap, 4, 6,"s", gd.addNumericField("Maximal gap between scenes", illustrationParameters.inter_gap, 4, 6,"s",
"Series will be split if the time gap between scenes exceeds this value"); "Series will be split if the time gap between scenes exceeds this value");
gd.addNumericField("Sequence length", illustrationParameters.seq_len, 0,3,"scenes", gd.addNumericField("Sequence length", illustrationParameters.seq_len, 0,3,"scenes",
"Limit sequence length if >=0 "); "Limit sequence length if >=0 ");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment