By using uint8 function , just converted my image into a plane, but i got the output in gray scale format. is it possible to get the image in rgb format n the same plane?
Show older comments
For analysis of am image I just changed the image to r,g and b format by using
ip(1:hi, 1:wi) = i(:,:,1);
ip(1+2*hi:3*hi,1:wi) = i(:,:,2)
ip(1+4*hi:5*hi,1:wi) = i(:,:,3)
command to place the image on a plane, but the output I am receiving is in the grayscale how can I obtain it in the same r , g, b order by eliminating the remaining colour correspondingly ?
Accepted Answer
More Answers (0)
Categories
Find more on Convert Image Type in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!