imshow3

版本 1.0.0.0 (3.4 KB) 作者: Matthew Eicholtz
3D version of imshow.
206.0 次下载
更新时间 2016/11/1

查看许可证

IMSHOW3 Display 3D image stack.
IMSHOW3(I) generates a figure for viewing slices of a 3D image. A
slider at the bottom of the figure allows users to switch between
frames.
IMSHOW3(___,Name,Value) uses additional parameter name-value
pairs. Valid parameters include:

'Parent' Handle of the parent figure to use. Can be a
numeric scalar or the string 'new'.

Default: sum(mfilename+0)

'Scale' Scalar indicating how to resize the image. Passed
as an input to IMRESIZE.

Default: 1 (no resizing)

Example
-------
View a 3D MRI sample:

filename = 'mri.tif';
info = imfinfo(filename);
for ii=1:length(info)
I(:,:,ii) = imread(filename,'Index',ii,'Info',info);
end
imshow3(I);

See also IMSHOW.

引用格式

Matthew Eicholtz (2024). imshow3 (https://www.mathworks.com/matlabcentral/fileexchange/60038-imshow3), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2016b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Display Image 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.0.0.0