Commit 6d4eee07 authored by Andrey Filippov's avatar Andrey Filippov

More parameters in file names

parent 9d4b43a7
...@@ -6487,11 +6487,16 @@ public class CuasMotion { ...@@ -6487,11 +6487,16 @@ public class CuasMotion {
double lmax_flt_lsigma = clt_parameters.imp.cuas_lmax_flt_lsigma; // 1.0 // LPF - GB result of the previous subtraction double lmax_flt_lsigma = clt_parameters.imp.cuas_lmax_flt_lsigma; // 1.0 // LPF - GB result of the previous subtraction
double lmax_flt_scale = clt_parameters.imp.cuas_lmax_flt_scale; // 5.0 // scale filtering result double lmax_flt_scale = clt_parameters.imp.cuas_lmax_flt_scale; // 5.0 // scale filtering result
boolean center_targ = clt_parameters.imp.cuas_center_targ; boolean center_targ = clt_parameters.imp.cuas_center_targ;
String ps = ((prefix != null)?prefix:"") + "-OFFS"+corr_offset+"-PAIRS"+corr_pairs+"-RSTR"+rstr+"-RMS"+lma_rms+ String ps = ((prefix != null)?prefix:"") + "-OFFS"+corr_offset+"-PAIRS"+corr_pairs+"-RSTR"+rstr+"-RMS"+lma_rms+
"-SRMS"+lma_arms+"-RRMS"+lma_rrms+"-AMP"+lma_mina+"-FZ"+fat_zero+"-PCRA"+precorr_ra+"-PS"+corr_ra_step+ "-SRMS"+lma_arms+"-RRMS"+lma_rrms+"-AMP"+lma_mina+"-FZ"+fat_zero+"-PCRA"+precorr_ra+"-PS"+corr_ra_step+
"-TUM"+temporal_um+"-TT"+tum_threshold+"-MF"+lmax_fraction+ "-TUM"+temporal_um+"-TT"+tum_threshold+"-MF"+lmax_fraction+
"-HR"+lmax_hack_ridge+ "-HR"+lmax_hack_ridge+
"-NL"+lmax_flt_neglim+"-FH"+lmax_flt_hsigma+"-FL"+lmax_flt_lsigma+"-FS"+lmax_flt_scale; /// "-NL"+lmax_flt_neglim+"-FH"+lmax_flt_hsigma+"-FL"+lmax_flt_lsigma+"-FS"+lmax_flt_scale+
"-CB"+clt_parameters.imp.cuas_rng_combine+(clt_parameters.imp.cuas_rng_coswnd?"-WC":"-WR")+
"-UM"+(clt_parameters.imp.cuas_rng_um2?"D":"") +clt_parameters.imp.cuas_rng_um_sigma+
"-M"+clt_parameters.imp.cuas_mcorr_sel+"-"+clt_parameters.imp.cuas_mcorr_sel_lma;
if (center_targ) { if (center_targ) {
ps+="-CENT"; ps+="-CENT";
} }
......
...@@ -226,7 +226,7 @@ public class CuasRanging { ...@@ -226,7 +226,7 @@ public class CuasRanging {
System.out.println("processMovingTargetsMulti(): FAILED TO READ TARGET DATA FROM "+disparity_path); System.out.println("processMovingTargetsMulti(): FAILED TO READ TARGET DATA FROM "+disparity_path);
} else { } else {
targets = disparity_targets; targets = disparity_targets;
System.out.println("processMovingTargetsMulti(): re-using target data from "+disparity_path); System.out.println("processMovingTargetsMulti(): re-using target disparities from "+disparity_path);
} }
} }
if (disparity_targets == null) { if (disparity_targets == null) {
......
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