hypermnf, hyperpca 실행시 리턴된 coeff 값으로 입력행렬을 변환해보면 함께 리턴된 변환 행렬값이 나오지 않음.
Show older comments
아래와 같이 했을 때 image_MNF와 data_MNF가 완전히 서로 다른 값이 됨. hyperpca도 마찬가지임.
[image_MNF, coeff_MNF] = hypermnf(image, nBand);
Data_2D = reshape(image, nSample, nBand); %nSample = nRow*nCol
data_MNF = coeff_MNF*data_2D;
data_MNF = reshape(data_MNF, nRow, nCol, nBand);
Accepted Answer
More Answers (0)
Categories
Find more on 초분광 영상 처리 in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


