Image fusion for 3 bands satellite image NOT correct
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I try to compine 3 RGB bands for IKONOS image, but the result is not like the original image.
My image
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/155304/image.png)
The original
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/155305/image.jpeg)
and this is my code:
red = uint8(imread('po_58208_red_0000000.tif'));
green = uint8( imread('po_58208_grn_0000000.tif'));
blue = uint8(imread('po_58208_blu_0000000.tif'));
[rows, columns, numberOfColorBands] = size(red);
rgb = uint8(cat(3, red, blue, green));
imshow (uint8 (rgb))
Why??
0 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu Geometric Transformation and Image Registration finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!