Skip to content
Snippets Groups Projects
Commit 44334709 authored by Nicola Vigano's avatar Nicola Vigano
Browse files

Thresholding: let's disable the std-dev weighting by default

parent 8ab78be9
No related branches found
No related tags found
No related merge requests found
......@@ -390,7 +390,7 @@ classdef GtThreshold < handle
end
if (~isfield(thr_params, 'weight_by_stddev'))
thr_params.weight_by_stddev = true;
thr_params.weight_by_stddev = false;
end
end
......
......@@ -22,5 +22,5 @@ function par_rec = gtRecDefaultParameters(varargin)
par_rec.thresholding = struct( ...
'percentile', 20, 'do_morph_recon', true, ...
'percent_of_peak', 2.5, 'num_iter', 0, 'iter_factor', 1, ...
'weight_by_stddev', true);
'weight_by_stddev', false);
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment