how to crop images 3D
조회 수: 1 (최근 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{:});
채택된 답변
Cris LaPierre
2022년 10월 18일
편집: Cris LaPierre
2022년 10월 18일
Why not just do this
h = imstack3(:,:,1:10)
h = imcrop3(imstack3,[1,1,1,129,129,9]); % [xmin ymin zmin width height depth]
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!