how to crop images 3D

9 views (last 30 days)
mohd akmal masud
mohd akmal masud on 18 Oct 2022
Edited: Cris LaPierre on 18 Oct 2022
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 Comments
KSSV
KSSV on 18 Oct 2022
Did you try imcrop3 ?
mohd akmal masud
mohd akmal masud on 18 Oct 2022
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{:});

Sign in to comment.

Accepted Answer

Cris LaPierre
Cris LaPierre on 18 Oct 2022
Edited: Cris LaPierre on 18 Oct 2022
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]

More Answers (0)

Products


Release

R2022a

Community Treasure Hunt

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

Start Hunting!