forked from lucadellasantina/ObjectFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolocRedraw.m
More file actions
38 lines (36 loc) · 1.41 KB
/
colocRedraw.m
File metadata and controls
38 lines (36 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
%% ObjectFinder - Recognize 3D structures in image stacks
% Copyright (C) 2016,2017,2018 Luca Della Santina
%
% This file is part of ObjectFinder
%
% ObjectFinder is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program. If not, see <https://www.gnu.org/licenses/>.
%
function colocRedraw(frame, vidObj, colmap)
% REDRAW (FRAME, VIDOBJ)
% frame - frame number to process
% vidObj - mmread object
% colmap - colormap of your image, not necessary for RGB image, and
% even if you specify any colormap for RGB, it will not do
% anything to your image.
% Check if vidOjb is RGB or gray, and read frame
if size(vidObj, 4) == 3 %RGB 3-D matrix (4th dimention is R, G, B)
f = squeeze(vidObj(:,:,frame,:));
else
f = vidObj(:,:,frame);
end
% Display
image(f); axis image off
if exist('colmap', 'var')
colormap(colmap);
end