how to crop images 3D

8 vues (au cours des 30 derniers jours)
mohd akmal masud
mohd akmal masud le 18 Oct 2022
Modifié(e) : Cris LaPierre le 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 commentaires
KSSV
KSSV le 18 Oct 2022
Did you try imcrop3 ?
mohd akmal masud
mohd akmal masud le 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{:});

Connectez-vous pour commenter.

Réponse acceptée

Cris LaPierre
Cris LaPierre le 18 Oct 2022
Modifié(e) : Cris LaPierre le 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]

Plus de réponses (0)

Produits


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by