@@ -1787,11 +1787,11 @@ public class OrthoMapsCollection implements Serializable{
...
@@ -1787,11 +1787,11 @@ public class OrthoMapsCollection implements Serializable{
// make conditional distance - decrease if small offset (increase for large to accommodate +30/-10cm
// make conditional distance - decrease if small offset (increase for large to accommodate +30/-10cm
double[]filt_dist={10.0,5.0};// full offset and perpendicular to images offsets
double[]filt_dist={10.0,5.0};// full offset and perpendicular to images offsets
doublefilt_height=0.2;// allow extra negative offset parallel to image offset, corresponding to object above ground
doublefilt_height=0.2;// allow extra negative offset parallel to image offset, corresponding to object above ground
// double [] filt_full_half_frac = {0.7, 0.5}; // second probably not needed, it is for main
double[]filt_full_half_frac={0.675,0.5};// second probably not needed, it is for main
intdebugLevel=1;
intdebugLevel=1;
GenericJTabbedDialoggd=newGenericJTabbedDialog("Correlate two images with patterns",1200,900);
GenericJTabbedDialoggd=newGenericJTabbedDialog("Correlate two images with patterns",1200,1100);
gd.addNumericField("Minimal correlation, first",min_corrs[0],5,7,"","Minimal correlation value to keep, first scene.");
gd.addNumericField("Minimal correlation, first",min_corrs[0],5,7,"","Minimal correlation value to keep, first scene.");
gd.addNumericField("Minimal correlation, second",min_corrs[1],5,7,"","Minimal correlation value to keep, second scene.");
gd.addNumericField("Minimal correlation, second",min_corrs[1],5,7,"","Minimal correlation value to keep, second scene.");
// gd.addNumericField("Maximal peak area, first", max_area[0], 5,7,"","Maximal cross-section area of the peak at certain height.");
// gd.addNumericField("Maximal peak area, first", max_area[0], 5,7,"","Maximal cross-section area of the peak at certain height.");
...
@@ -1830,8 +1830,9 @@ public class OrthoMapsCollection implements Serializable{
...
@@ -1830,8 +1830,9 @@ public class OrthoMapsCollection implements Serializable{
gd.addNumericField("Maximal offset",filt_dist[0],5,7,"pix","Maximal other scene offset from the main.");
gd.addNumericField("Maximal offset",filt_dist[0],5,7,"pix","Maximal other scene offset from the main.");
gd.addNumericField("Maximal offset perpendicular",filt_dist[1],5,7,"pix","Maximal other scene offset perpendicular to offset between scenes.");
gd.addNumericField("Maximal offset perpendicular",filt_dist[1],5,7,"pix","Maximal other scene offset perpendicular to offset between scenes.");
gd.addNumericField("Maximal object height",filt_height,5,7,"m","Maximal object height to allow extra offset.");
gd.addNumericField("Maximal object height",filt_height,5,7,"m","Maximal object height to allow extra offset.");
gd.addNumericField("Full/half corr minimal ratio, main",filt_full_half_frac[0],5,7,"","Minimal correlation with full pattern strength ratio to correlation with a half-pattern.");
gd.addNumericField("Full/half corr minimal ratio, other",filt_full_half_frac[1],5,7,"","Minimal correlation with full pattern strength ratio to correlation with a half-pattern.");