serimcrop.m
来自「cell migration resource imaging icsmatla」· M 代码 · 共 36 行
M
36 行
function [crop,rect] = serimcrop(series);
% Crops a region of an image series, and outputs a smaller 3D matrix
% While loop ensures user is satisfied with choice
% If prime is 1, function will not accept a region with a prime dimension
ok = 'n';
figure
while ok == 'n'
colormap(hot(256));
imagesc(series(:,:,1))
title('Please select a region');
[im, rect] = imcrop;
close;
rect = floor(rect);
crop = zeros(rect(4)+1,rect(3)+1,size(series,3)); % Pre-allocates matrix
for i=1:size(series,3)
crop(:,:,i) = imcrop(series(:,:,i),rect);
end
ok = 'y';
% disp('You have selected the following area')
% imgmovie(crop,0)
% ok = input('Are you satisfied? (y/n)', 's');
% if prime == 1
% if or(isprime(size(crop,1)),isprime(size(crop,2)))
% errordlg('You have selected an area with a prime dimension. Please select again.','Fourier Transform Error')
% ok = 'n';
% end
% end
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?