what is the Matlab Code for compression of hyperspectral image 'ErtaAle'?

조회 수: 2 (최근 30일)
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
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.
Utkarsh Awasthi
Utkarsh Awasthi 2019년 5월 27일
Dear Sir,
Thanks 4 reply.
I got image from the below link.
The HS image is Hyperion Hyperspectral Images.

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2019년 5월 27일
X = multibandread('ErtaAle-3187.bip', [3187,256,242], '*uint16', 0, 'bip', 'ieee-le');
  댓글 수: 3
Walter Roberson
Walter Roberson 2019년 5월 28일
Lake Monona uses [3176, 256, 242] . Mt St. Helens uses [3242, 256, 242]
Utkarsh Awasthi
Utkarsh Awasthi 2019년 5월 28일
Dear Sir,
Thank you so much for helping me throughout the problem.
Your solution was very helpful

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Shrish Bajpai
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');

카테고리

Help CenterFile Exchange에서 Hyperspectral Image Processing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by