diff options
author | leochanj105 <leochanj@live.unc.edu> | 2020-10-19 23:09:30 -0400 |
---|---|---|
committer | leochanj105 <leochanj@live.unc.edu> | 2020-10-20 02:40:39 -0400 |
commit | f618466c25d43f3bae9e40920273bf77de1e1149 (patch) | |
tree | 460e739e2165b8a9c37a9c7ab1b60f5874903543 /SD-VBS/common/toolbox/toolbox_basic/disp/showmask.m | |
parent | 47ced4e96bbb782b9e780e8f2cfc637b2c21ff44 (diff) |
initial sd-vbs
initial sd-vbs
add sd-vbs
sd-vbs
Diffstat (limited to 'SD-VBS/common/toolbox/toolbox_basic/disp/showmask.m')
-rwxr-xr-x | SD-VBS/common/toolbox/toolbox_basic/disp/showmask.m | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/SD-VBS/common/toolbox/toolbox_basic/disp/showmask.m b/SD-VBS/common/toolbox/toolbox_basic/disp/showmask.m new file mode 100755 index 0000000..f301638 --- /dev/null +++ b/SD-VBS/common/toolbox/toolbox_basic/disp/showmask.m | |||
@@ -0,0 +1,20 @@ | |||
1 | function showmask(V,M,display_flag); | ||
2 | % showmask(V,M); | ||
3 | % | ||
4 | % M is a nonneg. mask | ||
5 | |||
6 | V=V-min(V(:)); | ||
7 | V=V/max(V(:)); | ||
8 | V=.25+0.75*V; %brighten things up a bit | ||
9 | |||
10 | M=M-min(M(:)); | ||
11 | M=M/max(M(:)); | ||
12 | |||
13 | H=0.0+zeros(size(V)); | ||
14 | S=M; | ||
15 | RGB=hsv2rgb(H,S,V); | ||
16 | |||
17 | %if nargin>2 | ||
18 | image(RGB) | ||
19 | axis('image') | ||
20 | %end | ||