GenericDialoggd=newGenericDialog("Fitting Strategy Step Configuration, step "+numSeries+" number of enabled images="+this.distortionCalibrationData.getNumEnabled());
gd.addCheckbox("Copy all from previous series (ignore all other fields)",false);
gd.addCheckbox("Copy all from the series below, ignore all other fields",false);
gd.addNumericField("Source series to copy from",(numSeries>0)?(numSeries-1):(numSeries+1),0,3,"");
gd.addCheckbox("Remove all (but first) images, reopen dialog",false);// remove all will be invalid, copied from the previous
gd.addCheckbox("Select all images, reopen dialog",false);
if(numEstimated>0){
...
...
@@ -1571,6 +1581,7 @@ I* - special case when the subcamera is being adjusted/replaced. How to deal wit
gd.showDialog();
if(gd.wasCanceled())return-2;
booleancopyFromPrevious=gd.getNextBoolean();
intsourceStrategy=(int)gd.getNextNumber();
booleanremoveAllImages=gd.getNextBoolean();
booleanselectAllImages=gd.getNextBoolean();
booleanselectEstimated=false;
...
...
@@ -1595,7 +1606,17 @@ I* - special case when the subcamera is being adjusted/replaced. How to deal wit
returnnumSeries;// caller will repeat with the same series