how to crop images 3D

5 次查看(过去 30 天)
Dear all,
I have 130x130x36 image as attached.
How to crop it into 130x130x10 ?
I tried this command, but error
h = imcrop(imstack3,[1:10]);
Error using images.internal.crop.parseInputsOverTwo>checkCData
Invalid input image.
Error in images.internal.crop.parseInputsOverTwo (line 52)
checkCData(a);
Error in imcrop (line 104)
images.internal.crop.parseInputsOverTwo(varargin{:});
  2 个评论
mohd akmal masud
mohd akmal masud 2022-10-18
yah..but error
h = imcrop3(imstack3,[1:10]);
Error using imcrop3>validateCuboid
Input number 2, CUBOID, is expected to contain 6 elements.
Error in imcrop3>parseInputs (line 69)
validateCuboid(cuboidWindow);
Error in imcrop3 (line 44)
[V, xLimits, yLimits, zLimits, isCuboidOutofBounds] = parseInputs(varargin{:});

请先登录,再进行评论。

采纳的回答

Cris LaPierre
Cris LaPierre 2022-10-18
编辑:Cris LaPierre 2022-10-18
Why not just do this
h = imstack3(:,:,1:10)
Since this is a 3D image, you could also try using imcrop3.
h = imcrop3(imstack3,[1,1,1,129,129,9]); % [xmin ymin zmin width height depth]

更多回答(0 个)

产品


版本

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by