what is the Matlab Code for compression of hyperspectral image 'ErtaAle'?
1 回表示 (過去 30 日間)
古いコメントを表示
Utkarsh Awasthi
2019 年 5 月 27 日
コメント済み: Utkarsh Awasthi
2019 年 5 月 28 日
I have written this code line but not getting the proper image.
X = multibandread('ErtaAle.bip',[512,680,224],'*uint16',0,'bip','ieee-be');
2 件のコメント
Walter Roberson
2019 年 5 月 27 日
We do not know where you got the file from.
The only reference I can find to that file is in https://kumaraguruece.files.wordpress.com/2016/10/hybrid-compression-of-hyperspectral.pdf which says "Each image has width 256 cross-track samples, 242 spectral channels, and the height indicated in the table below". A later sentence hints that it is 256 x 256 x 224.
採用された回答
Walter Roberson
2019 年 5 月 27 日
X = multibandread('ErtaAle-3187.bip', [3187,256,242], '*uint16', 0, 'bip', 'ieee-le');
3 件のコメント
Walter Roberson
2019 年 5 月 28 日
Lake Monona uses [3176, 256, 242] . Mt St. Helens uses [3242, 256, 242]
その他の回答 (1 件)
Shrish Bajpai
2019 年 5 月 28 日
X = multibandread('LakeMonona.bip', [3176,256,242], '*uint16', 0, 'bip', 'ieee-le');
or
X = multibandread('MtStHelens.bip', [3242,256,242], '*uint16', 0, 'bip', 'ieee-le');
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Hyperspectral Image Processing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!