Skip to content

Commit a8a2c2e

Browse files
committed
Removed parameter 'extra_smooth'
1 parent e94a62c commit a8a2c2e

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

src/algorithm/APRParameters.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ class APRParameters {
3333

3434
// additional pipeline parameters
3535
bool reflect_bc_lis = true;
36-
int extra_smooth = 0;
3736
bool check_input = false;
3837
bool swap_dimensions = false;
3938
bool neighborhood_optimization = true;

src/algorithm/LocalIntensityScale.hpp

-13
Original file line numberDiff line numberDiff line change
@@ -109,19 +109,6 @@ void get_local_intensity_scale(PixelData<float> &local_scale_temp, PixelData<flo
109109
calc_sat_mean_z(local_scale_temp, win_z2);
110110
}
111111

112-
// second average for extra smoothing
113-
if(par.extra_smooth) {
114-
if (active_y) {
115-
calc_sat_mean_y(local_scale_temp, par.extra_smooth);
116-
}
117-
if (active_x) {
118-
calc_sat_mean_x(local_scale_temp, par.extra_smooth);
119-
}
120-
if (active_z) {
121-
calc_sat_mean_z(local_scale_temp, par.extra_smooth);
122-
}
123-
}
124-
125112
rescale_var(local_scale_temp, var_rescale);
126113
timer.stop_timer();
127114

0 commit comments

Comments
 (0)