Main Content

getAxesHandle

Get handle to axes in Slice Viewer

Description

example

hAx= getAxesHandle(s)返回轴片查看器中s.

Examples

全部折叠

Load MRI data into the workspace.

loadmristack

Create a display panel used to display the slices and the slider.

ViewPnl = uipanel(figure,'Title','Z-Direction Slices of MRI');

View the data in the slice viewer, specifying a custom colormap for viewing the slices. The slice viewer opens the stack of images and displays the one in the middle. Use the slider to view a different slice.

cmap = parula(256); s = sliceViewer(mristack,'Colormap',cmap,'Parent',ViewPnl);

Get the handle to the axes that contains the image slices in the slice viewer.

hAx = getAxesHandle(s)
hAx = Axes with properties: XLim: [0.5000 256.5000] YLim: [0.5000 256.5000] XScale: 'linear' YScale: 'linear' GridLineStyle: '-' Position: [120 57.5000 320 320] Units: 'pixels' Show all properties

Input Arguments

全部折叠

Slice Viewer, specified as asliceViewerobject.

Output Arguments

全部折叠

Axes in Slice Viewer, returned as anAxesobject.

See Also

Introduced in R2019b