@@ -177,6 +177,8 @@ const char* const max_solver_iterations_robust = "max_solver_iterations_robust";
177177// / String parameter name
178178const char * const robust_solver_tolerance = " robust_solver_tolerance" ;
179179// / String parameter name
180+ const char * const sssig_threshold = " sssig_threshold" ;
181+ // / String parameter name
180182const char * const initial_gamma_threshold = " initial_gamma_threshold" ;
181183// / String parameter name
182184const char * const final_gamma_threshold = " final_gamma_threshold" ;
@@ -996,6 +998,8 @@ const Correlation_Parameter skip_solve_gamma_threshold_param(skip_solve_gamma_th
996998// / Correlation parameter and properties
997999const Correlation_Parameter initial_gamma_threshold_param (initial_gamma_threshold,SCALAR_PARAM,true ,
9981000 " If the gamma evaluation for the initial deformation guess is not below this value, initialization will fail" );
1001+ const Correlation_Parameter sssig_threshold_param (sssig_threshold,SCALAR_PARAM,true ,
1002+ " filters out areas of the image with low gradients, if a subset has an SSSIG below this value it gets excluded" );
9991003// / Correlation parameter and properties
10001004const Correlation_Parameter final_gamma_threshold_param (final_gamma_threshold,SCALAR_PARAM,true ,
10011005 " If the gamma evaluation for the final deformation guess is not below this value, the step will fail for this subset" );
@@ -1168,7 +1172,7 @@ const Correlation_Parameter filter_failed_cine_pixels_param(filter_failed_cine_p
11681172// TODO don't forget to update this when adding a new one
11691173// / The total number of valid correlation parameters
11701174// / Vector of valid parameter names
1171- const int_t num_valid_correlation_params = 79 ;
1175+ const int_t num_valid_correlation_params = 80 ;
11721176// / Vector oIf valid parameter names
11731177const Correlation_Parameter valid_correlation_params[num_valid_correlation_params] = {
11741178 correlation_routine_param,
@@ -1194,6 +1198,7 @@ const Correlation_Parameter valid_correlation_params[num_valid_correlation_param
11941198 skip_all_solves_param,
11951199 skip_solve_gamma_threshold_param,
11961200 initial_gamma_threshold_param,
1201+ sssig_threshold_param,
11971202 final_gamma_threshold_param,
11981203 path_distance_threshold_param,
11991204 disp_jump_tol_param,
0 commit comments