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

Minor change to be more clear with names

parent 0ca95d58
No related branches found
No related tags found
No related merge requests found
......@@ -94,9 +94,9 @@ function lsf_line = gtESF2LSF(img, varargin)
lsf = interp1(lsf, linspace(center_pos-lsf_edge, center_pos+lsf_edge, conf.size * conf.oversampling), 'spline');
switch (conf.side)
case 'both'
case 'left'
case 'dark'
lsf(lsf_edge+2:end) = flip(lsf(1:lsf_edge));
case 'right'
case 'bright'
lsf(1:lsf_edge) = flip(lsf(lsf_edge+2:end));
end
lsf(lsf < 0) = 0;
......
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