How to create RGB image from multispectral image?
10 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(3 个)
Benjamin Thompson
2022-10-7
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 个评论
Parth Parikh
2022-11-30
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 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!