Converting the grayscale dimension in a 4D dicom image matrix to RGB
    10 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
I converted a mha file to dicom format (and got this file: https://www.dropbox.com/s/i0cr2910ie4k5zy/TumorSimOutput2_T1.dcm ) via a Linux utility program (this one: http://manpages.ubuntu.com/manpages/lucid/man1/gdcm2vtk.1.html ) and visualize it via imshow using threedimensional indexing:
    imshow(image_data(:,:,index),'DisplayRange',[]);
when I examine the dimensions of image_data I get:
256 256 1 181
I understand the third dimension is the grayscale intensity (thanks to Walter Roberson and his answer here: http://www.mathworks.com/matlabcentral/answers/62671-4d-dicom-matrix-why-not-3d).
I want to convert this grayscale dimension of the matrix into RGB, how can I do this?
0 commentaires
Réponse acceptée
  Image Analyst
      
      
 le 8 Fév 2013
        How about extracting the gray scale image from the 4D image, and then converting it:
grayImage = your4Dimage(:,:,1,181); % Can use any frame instead of 181
rgbImage = cat(3, grayImage, grayImage, grayImage);
3 commentaires
  Image Analyst
      
      
 le 15 Fév 2013
				You don't use [] with an RGB image, only grayscale. But for RGB images, the values have to be between 0 and 1 if the image is floating point, and between 0 and 255 if it's uint8. I suggest you capture that slice into a single 2D image (like Walter suggested) so that you can do "whos" on it to see what class and dimensions it really has, before you just blindly toss it into imshow() and hope for the best. So, now, is your image gray scale, or color, and is it double or uint8?
rgb4Dimage = your4Dimage(:,:,[1 1 1],:);
whos rgb4Dimage 
size(rgb4Dimage)
what does all that show?
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Convert Image Type dans Help Center et File Exchange
			
	Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


