How to create RGB image from multispectral image?
8 views (last 30 days)
Show older comments
I am trying to extract certain bands under the name of 'red', 'green', 'blue' from hyperspcetral image, then to combine them and create the 'RGB' version of the image. here is the code I tried but I get error when I combine. paviaU variable has the following dimenstions '610x340x103' as I know '103' is the number of bands. What are your suggestions here? What am I doing wrong? Is there a better method?
image=paviaU;
blue=image(:,:,7);
green=image(:,:,21);
red=image(:,:,53);
figure; imshow(blue, []); figure; imshow(green, []); figure; imshow(red, []);
rgbImage = image(3, red,green,blue); &line where I get the error
imshow(rgbImage);
0 Comments
Answers (3)
Benjamin Thompson
on 7 Oct 2022
I don't see in the documentation of the image function that it accepts a parameter list like you are using.
You can combine the red, green, and blue matrices together yourself:
rgbImage = red;
rgbImage(:,:,2) = green;
rgbImage(:,:,3) = blue;
Then you can probably use imshow to display it. You did not attach a sample image for reference so I cannot test this myself.
0 Comments
Parth Parikh
on 30 Nov 2022
Hi,
Try below code for generating the RGB image.
hcube = hypercube('PaviaU.dat');
rgbImg = colorize(hcube, 'Method','rgb','ContrastStretching',true);
imshow(rgbImg);
In case you have PaviaU data in the .mat file than, you can create a hypercube object using below syntax.
hcube = hypercube(paviaUData, wavelengths);
For more information take a look at the documentation:
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!