Changing Matlab toolbox sliceViewer properties

9 次查看(过去 30 天)
Hi I have a 3d image that I would like to view inbetween the layers, I am trying to use the sliceViewer tool: https://uk.mathworks.com/help/images/ref/sliceviewer.html
I am able to load the tool but i am unsure how to change the properties so that I could view the slices from the Y direction and the X direction instead of the Z direction as is the default value.
Additionally in the same kind of question how would i change the properties of the orthosliceViewer: https://uk.mathworks.com/help/images/ref/orthosliceviewer.html
I would like to view the different layers instead of the default at the midplane.

采纳的回答

Ganesh Regoti
Ganesh Regoti 2020-1-31
Hi,
For Matlab functions, the arguments are provided in the format of name-value pairs. You can refer to examples in the following doc
Here is small code-snippet to change the view of sliceViewer
load mristack
cmap = parula(256);
s = sliceViewer(mristack,'Colormap',cmap,'SliceDirection','Y') %SliceDirection is the property that changes the view of image slices
Hope this helps!

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 3-D Volumetric Image Processing 的更多信息

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by