How can i convert a 3D image to 2D in matlab?

조회 수: 111 (최근 30일)
dee koshy
dee koshy 2012년 2월 20일
댓글: Mihirasree 2022년 11월 9일
I am using a code that will work only on 2D arrays and I have to convert the current image which is in 3D to 2D.

답변 (2개)

Image Analyst
Image Analyst 2012년 2월 20일
편집: Image Analyst 2014년 2월 28일
If the 3D image is a color image, you can take individual color channels like this:
% Extract the individual red, green, and blue color channels.
redChannel = rgbImage(:, :, 1);
greenChannel = rgbImage(:, :, 2);
blueChannel = rgbImage(:, :, 3);
Or you could use a weighted average of the red, green, and blue channels like this:
grayImage = rgb2gray(rgbImage);
Or if you have a volumetric image (like a CT or MRI image or other image distributed in 3 spatial dimensions) you can use the mean (or max or min) like this
xyImage = mean(volumeImage, 3);
xzImage = mean(volumeImage, 2);
yzImage = mean(volumeImage, 1);
They will get you the average of the 3D volumetric image projected along one of the dimensions.
  댓글 수: 7
Mihirasree
Mihirasree 2022년 11월 9일
thank you soo much sir your suggestions helping us all a lot . Thanks for helping us

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


Dinesh kumar
Dinesh kumar 2016년 11월 13일
please answer me the coding for how to convert a 3d image into 2d image
  댓글 수: 4
Walter Roberson
Walter Roberson 2017년 1월 24일
https://www.mathworks.com/matlabcentral/answers/122486-how-can-i-load-and-view-medical-image-mha to read it. You can then extract slices of the result using array indexing.
Galiyabi P S
Galiyabi P S 2017년 1월 29일
Thanks Walter Roberson for your answer. It helps me to read and display the mha image. Can you help me to convert these images to rgb format?

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

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by