Image fusion for 3 bands satellite image NOT correct

1 回表示 (過去 30 日間)
Mohammad Al Nagdawi
Mohammad Al Nagdawi 2016 年 8 月 1 日
編集済み: Mohammad Al Nagdawi 2016 年 8 月 1 日
I try to compine 3 RGB bands for IKONOS image, but the result is not like the original image.
My image
The original
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 件)

カテゴリ

Help Center および File ExchangeRead, Write, and Modify Image についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by