2D Gray scale volumatric image slicing: with uniform cross-section

조회 수: 1 (최근 30일)
Subha Mallick
Subha Mallick 2020년 7월 3일
댓글: Subha Mallick 2020년 7월 7일
Hii,
I am having problem with slicing the 2d gray scale volumatric image (as like the attached image ). Below to the text, I have shown one example of uniform slicing of 2D Gray scale volumatric image to 2D gray scale planar image. It would be my pleasure if anyone could find a solution to such slicing process.
Please try to slice the attached image.
  댓글 수: 2
darova
darova 2020년 7월 3일
Do you have a 3d image? Just try
imshow(A(:,:,50)) % show 50th slice
Subha Mallick
Subha Mallick 2020년 7월 7일
Dear Darova thanks a lot for your response. Please follow the queries and help if possible.
The image is 2d gray scale image: as attached.

댓글을 달려면 로그인하십시오.

답변 (1개)

Vimal Rathod
Vimal Rathod 2020년 7월 6일
편집: Vimal Rathod 2020년 7월 6일
You could view individual XY planes by doing normal matrix slicing and using "imshow" function. You can check each of the image plane and select the one which you want.
img = load('image_file'); % img size = K x L x M
imshow(img(:,:,n)); % where n can be any value from 1 to M
you could also use sliceViewer to view all the slides using a GUI.
s = sliceViewer(img);
For more info you could refer to the following links
  댓글 수: 1
Subha Mallick
Subha Mallick 2020년 7월 7일
Dear Vimal,
Thanks a lot for your assitance and information. I would be grateful if you could provide further assiatnce to solve this problem.
Please check the image below, which is shown with detailed description and related queries.
The input image is attached in the beginning of the query.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by