Skip to content

Commit

Permalink
color example
Browse files Browse the repository at this point in the history
  • Loading branch information
jklebes committed Dec 13, 2022
1 parent a3a29bc commit deea88f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file added color_example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion imbandpass.m
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
%stripe Filter option
addParameter(p,'stripeFilter', 'gaussian', @(x) any(validatestring(x,{'gaussian', 'hard'})));
%stripe supression width: less than image dimension, 0->None
addParameter(p,'stripeTolerance', 5, @(x) isnumeric(x))
addParameter(p,'stripeTolerance', 5, @(x) isnumeric(x)&&x>=0&&x<=100)
%filter type, default gaussian
addParameter(p,'filter', 'gaussian', @(x) any(validatestring(x,{'gaussian','butterworth', 'hard'})))
addParameter(p,'butterworthN', 1)
Expand Down

0 comments on commit deea88f

Please sign in to comment.