Commit 155415d8 authored by Andrey Filippov's avatar Andrey Filippov

Generating more data for plots in Libreoffice Calc

parent e6d6f963
...@@ -2010,11 +2010,7 @@ public class QuadCLT extends QuadCLTCPU { ...@@ -2010,11 +2010,7 @@ public class QuadCLT extends QuadCLTCPU {
EyesisCorrectionParameters.RGBParameters rgbParameters, EyesisCorrectionParameters.RGBParameters rgbParameters,
final int threadsMax, // maximal number of threads to launch final int threadsMax, // maximal number of threads to launch
final int debugLevel){ final int debugLevel){
String x3d_path= correctionsParameters.selectX3dDirectory( // for x3d and obj String x3d_path = getX3dDirectory();
correctionsParameters.getModelName(image_name), // quad timestamp. Will be ignored if correctionsParameters.use_x3d_subdirs is false
correctionsParameters.x3dModelVersion,
true, // smart,
true); //newAllowed, // save
String file_name = image_name + suffix; String file_name = image_name + suffix;
String file_path = x3d_path + Prefs.getFileSeparator() + file_name + ".tiff"; String file_path = x3d_path + Prefs.getFileSeparator() + file_name + ".tiff";
if ((getGPU() != null) && (getGPU().getQuadCLT() != this)) { if ((getGPU() != null) && (getGPU().getQuadCLT() != this)) {
...@@ -2224,11 +2220,7 @@ public class QuadCLT extends QuadCLTCPU { ...@@ -2224,11 +2220,7 @@ public class QuadCLT extends QuadCLTCPU {
if (clt_parameters.gen_4_img) { // save 4 JPEG images if (clt_parameters.gen_4_img) { // save 4 JPEG images
// Save as individual JPEG images in the model directory // Save as individual JPEG images in the model directory
String x3d_path= correctionsParameters.selectX3dDirectory( String x3d_path = getX3dDirectory();
image_name, // quad timestamp. Will be ignored if correctionsParameters.use_x3d_subdirs is false
correctionsParameters.x3dModelVersion,
true, // smart,
true); //newAllowed, // save
for (int sub_img = 0; sub_img < imps_RGB.length; sub_img++){ for (int sub_img = 0; sub_img < imps_RGB.length; sub_img++){
EyesisCorrections.saveAndShow( EyesisCorrections.saveAndShow(
imps_RGB[sub_img], imps_RGB[sub_img],
...@@ -2759,11 +2751,7 @@ public class QuadCLT extends QuadCLTCPU { ...@@ -2759,11 +2751,7 @@ public class QuadCLT extends QuadCLTCPU {
if (clt_parameters.gen_4_img) { // save 4 JPEG images if (clt_parameters.gen_4_img) { // save 4 JPEG images
// Save as individual JPEG images in the model directory // Save as individual JPEG images in the model directory
String x3d_path= quadCLT_main.correctionsParameters.selectX3dDirectory( String x3d_path= quadCLT_main.getX3dDirectory();
name, // quad timestamp. Will be ignored if correctionsParameters.use_x3d_subdirs is false
quadCLT_main.correctionsParameters.x3dModelVersion,
true, // smart,
true); //newAllowed, // save
for (int sub_img = 0; sub_img < imps_RGB.length; sub_img++){ for (int sub_img = 0; sub_img < imps_RGB.length; sub_img++){
EyesisCorrections.saveAndShow( EyesisCorrections.saveAndShow(
imps_RGB[sub_img], imps_RGB[sub_img],
......
...@@ -329,6 +329,26 @@ public class QuadCLTCPU { ...@@ -329,6 +329,26 @@ public class QuadCLTCPU {
return image_name; return image_name;
} }
public String getX3dDirectory() { // replace direct calculations
String x3d_path = correctionsParameters.selectX3dDirectory( // for x3d and obj
correctionsParameters.getModelName(image_name), // quad timestamp. Will be ignored if correctionsParameters.use_x3d_subdirs is false
correctionsParameters.x3dModelVersion,
true, // smart,
true); //newAllowed, // save
return x3d_path;
}
// maybe will not be needed? TODO: Check
public String getX3dDirectory(String name) { // replace direct calculations
String x3d_path = correctionsParameters.selectX3dDirectory( // for x3d and obj
name, // quad timestamp. Will be ignored if correctionsParameters.use_x3d_subdirs is false
correctionsParameters.x3dModelVersion,
true, // smart,
true); //newAllowed, // save
return x3d_path;
}
public int restoreDSI( public int restoreDSI(
String suffix, String suffix,
boolean silent) // "-DSI_COMBO", "-DSI_MAIN" (DSI_COMBO_SUFFIX, DSI_MAIN_SUFFIX) boolean silent) // "-DSI_COMBO", "-DSI_MAIN" (DSI_COMBO_SUFFIX, DSI_MAIN_SUFFIX)
...@@ -344,11 +364,7 @@ public class QuadCLTCPU { ...@@ -344,11 +364,7 @@ public class QuadCLTCPU {
String suffix, // "-DSI_COMBO", "-DSI_MAIN" (DSI_COMBO_SUFFIX, DSI_MAIN_SUFFIX) String suffix, // "-DSI_COMBO", "-DSI_MAIN" (DSI_COMBO_SUFFIX, DSI_MAIN_SUFFIX)
double [][] dsi, double [][] dsi,
boolean silent) { boolean silent) {
String x3d_path= correctionsParameters.selectX3dDirectory( // for x3d and obj String x3d_path = getX3dDirectory();
correctionsParameters.getModelName(image_name), // quad timestamp. Will be ignored if correctionsParameters.use_x3d_subdirs is false
correctionsParameters.x3dModelVersion,
true, // smart,
true); //newAllowed, // save
String file_path = x3d_path + Prefs.getFileSeparator() + image_name + suffix + ".tiff"; String file_path = x3d_path + Prefs.getFileSeparator() + image_name + suffix + ".tiff";
ImagePlus imp = null; ImagePlus imp = null;
try { try {
...@@ -404,11 +420,7 @@ public class QuadCLTCPU { ...@@ -404,11 +420,7 @@ public class QuadCLTCPU {
} }
if (!path.contains(Prefs.getFileSeparator())) { if (!path.contains(Prefs.getFileSeparator())) {
String x3d_path= correctionsParameters.selectX3dDirectory( // for x3d and obj String x3d_path = getX3dDirectory();
correctionsParameters.getModelName(image_name), // quad timestamp. Will be ignored if correctionsParameters.use_x3d_subdirs is false
correctionsParameters.x3dModelVersion,
true, // smart,
true); //newAllowed, // save
path = x3d_path+Prefs.getFileSeparator()+path; path = x3d_path+Prefs.getFileSeparator()+path;
} }
Properties inter_properties = new Properties(); Properties inter_properties = new Properties();
...@@ -465,11 +477,7 @@ public class QuadCLTCPU { ...@@ -465,11 +477,7 @@ public class QuadCLTCPU {
} }
if (!path.contains(Prefs.getFileSeparator())) { if (!path.contains(Prefs.getFileSeparator())) {
String x3d_path= correctionsParameters.selectX3dDirectory( // for x3d and obj String x3d_path = getX3dDirectory();
correctionsParameters.getModelName(image_name), // quad timestamp. Will be ignored if correctionsParameters.use_x3d_subdirs is false
correctionsParameters.x3dModelVersion,
true, // smart,
true); //newAllowed, // save
path = x3d_path+Prefs.getFileSeparator()+path; path = x3d_path+Prefs.getFileSeparator()+path;
} }
properties = loadProperties( properties = loadProperties(
...@@ -827,11 +835,7 @@ public class QuadCLTCPU { ...@@ -827,11 +835,7 @@ public class QuadCLTCPU {
final int num_cams = this.image_data.length; final int num_cams = this.image_data.length;
final int num_cols = image_data[0].length; final int num_cols = image_data[0].length;
final int [] image_wh = geometryCorrection.getSensorWH(); final int [] image_wh = geometryCorrection.getSensorWH();
String x3d_path= correctionsParameters.selectX3dDirectory( // for x3d and obj String x3d_path = getX3dDirectory();
correctionsParameters.getModelName(image_name), // quad timestamp. Will be ignored if correctionsParameters.use_x3d_subdirs is false
correctionsParameters.x3dModelVersion,
true, // smart,
true); //newAllowed, // save
String noise_suffix = suffix + sigma; String noise_suffix = suffix + sigma;
String file_name = image_name + noise_suffix; String file_name = image_name + noise_suffix;
String file_path = x3d_path + Prefs.getFileSeparator() + file_name + ".tiff"; String file_path = x3d_path + Prefs.getFileSeparator() + file_name + ".tiff";
...@@ -962,11 +966,7 @@ public class QuadCLTCPU { ...@@ -962,11 +966,7 @@ public class QuadCLTCPU {
int width, int width,
int height) int height)
{ {
String x3d_path= correctionsParameters.selectX3dDirectory( // for x3d and obj String x3d_path = getX3dDirectory();
correctionsParameters.getModelName(image_name), // quad timestamp. Will be ignored if correctionsParameters.use_x3d_subdirs is false
correctionsParameters.x3dModelVersion,
true, // smart,
true); //newAllowed, // save
String file_name = image_name + suffix; String file_name = image_name + suffix;
String file_path = x3d_path + Prefs.getFileSeparator() + file_name + ".tiff"; String file_path = x3d_path + Prefs.getFileSeparator() + file_name + ".tiff";
ImageStack imageStack = (new ShowDoubleFloatArrays()).makeStack(data, width, height, labels); ImageStack imageStack = (new ShowDoubleFloatArrays()).makeStack(data, width, height, labels);
...@@ -984,11 +984,7 @@ public class QuadCLTCPU { ...@@ -984,11 +984,7 @@ public class QuadCLTCPU {
) )
{ {
// final int [] image_wh = geometryCorrection.getSensorWH(); // final int [] image_wh = geometryCorrection.getSensorWH();
String x3d_path= correctionsParameters.selectX3dDirectory( // for x3d and obj String x3d_path = getX3dDirectory();
correctionsParameters.getModelName(image_name), // quad timestamp. Will be ignored if correctionsParameters.use_x3d_subdirs is false
correctionsParameters.x3dModelVersion,
true, // smart,
true); //newAllowed, // save
String file_name = image_name + suffix; String file_name = image_name + suffix;
String file_path = x3d_path + Prefs.getFileSeparator() + file_name + ".tiff"; String file_path = x3d_path + Prefs.getFileSeparator() + file_name + ".tiff";
ImagePlus imp = null; ImagePlus imp = null;
...@@ -1030,11 +1026,7 @@ public class QuadCLTCPU { ...@@ -1030,11 +1026,7 @@ public class QuadCLTCPU {
double [][] dsi double [][] dsi
) )
{ {
String x3d_path= correctionsParameters.selectX3dDirectory( // for x3d and obj String x3d_path = getX3dDirectory();
correctionsParameters.getModelName(image_name), // quad timestamp. Will be ignored if correctionsParameters.use_x3d_subdirs is false
correctionsParameters.x3dModelVersion,
true, // smart,
true); //newAllowed, // save
String title = image_name+TwoQuadCLT.DSI_COMBO_SUFFIX; String title = image_name+TwoQuadCLT.DSI_COMBO_SUFFIX;
ImagePlus imp = (new ShowDoubleFloatArrays()).makeArrays(dsi,tp.getTilesX(), tp.getTilesY(), title, TwoQuadCLT.DSI_SLICES); ImagePlus imp = (new ShowDoubleFloatArrays()).makeArrays(dsi,tp.getTilesX(), tp.getTilesY(), title, TwoQuadCLT.DSI_SLICES);
eyesisCorrections.saveAndShow( eyesisCorrections.saveAndShow(
...@@ -1056,11 +1048,7 @@ public class QuadCLTCPU { ...@@ -1056,11 +1048,7 @@ public class QuadCLTCPU {
public void saveDSIMain( public void saveDSIMain(
double [][] dsi) // DSI_SLICES.length double [][] dsi) // DSI_SLICES.length
{ {
String x3d_path= correctionsParameters.selectX3dDirectory( // for x3d and obj String x3d_path = getX3dDirectory();
correctionsParameters.getModelName(image_name), // quad timestamp. Will be ignored if correctionsParameters.use_x3d_subdirs is false
correctionsParameters.x3dModelVersion,
true, // smart,
true); //newAllowed, // save
String title = image_name+"-DSI_MAIN"; String title = image_name+"-DSI_MAIN";
String [] titles = {TwoQuadCLT.DSI_SLICES[TwoQuadCLT.DSI_DISPARITY_MAIN], TwoQuadCLT.DSI_SLICES[TwoQuadCLT.DSI_STRENGTH_MAIN]}; String [] titles = {TwoQuadCLT.DSI_SLICES[TwoQuadCLT.DSI_DISPARITY_MAIN], TwoQuadCLT.DSI_SLICES[TwoQuadCLT.DSI_STRENGTH_MAIN]};
double [][] dsi_main = {dsi[TwoQuadCLT.DSI_DISPARITY_MAIN], dsi[TwoQuadCLT.DSI_STRENGTH_MAIN]}; double [][] dsi_main = {dsi[TwoQuadCLT.DSI_DISPARITY_MAIN], dsi[TwoQuadCLT.DSI_STRENGTH_MAIN]};
...@@ -1078,11 +1066,7 @@ public class QuadCLTCPU { ...@@ -1078,11 +1066,7 @@ public class QuadCLTCPU {
String suffix, // "-DSI_MAIN" String suffix, // "-DSI_MAIN"
double [][] dsi) // DSI_SLICES.length double [][] dsi) // DSI_SLICES.length
{ {
String x3d_path= correctionsParameters.selectX3dDirectory( // for x3d and obj String x3d_path = getX3dDirectory();
correctionsParameters.getModelName(image_name), // quad timestamp. Will be ignored if correctionsParameters.use_x3d_subdirs is false
correctionsParameters.x3dModelVersion,
true, // smart,
true); //newAllowed, // save
String title = image_name+suffix; // "-DSI_MAIN"; String title = image_name+suffix; // "-DSI_MAIN";
ImagePlus imp = (new ShowDoubleFloatArrays()).makeArrays(dsi, tp.getTilesX(), tp.getTilesY(), title, TwoQuadCLT.DSI_SLICES); ImagePlus imp = (new ShowDoubleFloatArrays()).makeArrays(dsi, tp.getTilesX(), tp.getTilesY(), title, TwoQuadCLT.DSI_SLICES);
eyesisCorrections.saveAndShow( eyesisCorrections.saveAndShow(
...@@ -1101,11 +1085,7 @@ public class QuadCLTCPU { ...@@ -1101,11 +1085,7 @@ public class QuadCLTCPU {
QuadCLT quadCLT_aux, QuadCLT quadCLT_aux,
double [][] dsi_aux_from_main) double [][] dsi_aux_from_main)
{ {
String x3d_path= correctionsParameters.selectX3dDirectory( // for x3d and obj String x3d_path = getX3dDirectory();
correctionsParameters.getModelName(image_name), // quad timestamp. Will be ignored if correctionsParameters.use_x3d_subdirs is false
correctionsParameters.x3dModelVersion,
true, // smart,
true); //newAllowed, // save
String title = quadCLT_aux.image_name+"-DSI_GT-AUX"; String title = quadCLT_aux.image_name+"-DSI_GT-AUX";
// String [] titles = {DSI_SLICES[DSI_DISPARITY_MAIN], DSI_SLICES[DSI_STRENGTH_MAIN]}; // String [] titles = {DSI_SLICES[DSI_DISPARITY_MAIN], DSI_SLICES[DSI_STRENGTH_MAIN]};
// double [][] dsi_main = {dsi[DSI_DISPARITY_MAIN], dsi[DSI_STRENGTH_MAIN]}; // double [][] dsi_main = {dsi[DSI_DISPARITY_MAIN], dsi[DSI_STRENGTH_MAIN]};
...@@ -5955,11 +5935,7 @@ public class QuadCLTCPU { ...@@ -5955,11 +5935,7 @@ public class QuadCLTCPU {
} }
if (clt_parameters.gen_4_img) { if (clt_parameters.gen_4_img) {
// Save as individual JPEG images in the model directory // Save as individual JPEG images in the model directory
String x3d_path= correctionsParameters.selectX3dDirectory( String x3d_path = getX3dDirectory();
image_name, // quad timestamp. Will be ignored if correctionsParameters.use_x3d_subdirs is false
correctionsParameters.x3dModelVersion,
true, // smart,
true); //newAllowed, // save
for (int sub_img = 0; sub_img < imps_RGB.length; sub_img++){ for (int sub_img = 0; sub_img < imps_RGB.length; sub_img++){
EyesisCorrections.saveAndShow( EyesisCorrections.saveAndShow(
imps_RGB[sub_img], imps_RGB[sub_img],
...@@ -11047,12 +11023,7 @@ public class QuadCLTCPU { ...@@ -11047,12 +11023,7 @@ public class QuadCLTCPU {
tp.clt_3d_passes.get(next_pass-1), // CLTPass3d scan, tp.clt_3d_passes.get(next_pass-1), // CLTPass3d scan,
"after_pass3-"+(next_pass-1)); //String title) "after_pass3-"+(next_pass-1)); //String title)
} }
String x3d_path= correctionsParameters.selectX3dDirectory( // for x3d and obj String x3d_path = getX3dDirectory();
correctionsParameters.getModelName(this.image_name), // quad timestamp. Will be ignored if correctionsParameters.use_x3d_subdirs is false
correctionsParameters.x3dModelVersion,
true, // smart,
true); //newAllowed, // save
// create x3d file // create x3d file
if (clt_parameters.output_x3d) { if (clt_parameters.output_x3d) {
x3dOutput = new X3dOutput( x3dOutput = new X3dOutput(
......
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