hyperspectral pre processing (white reference, dark current)
조회 수: 4 (최근 30일)
이전 댓글 표시
I have white reference & dark current data.
I want to apply this data to analyze hypercube imaging.
It is my current code.
clc;clear;
hcube = hypercube('sample raw');
endmembers = fippi(hcube,10);
newhcube = selectBands(hcube,endmembers,'NumberOfBands',20);
ragne = [min(hcube.Wavelength) max(hcube.Wavelength)];
wlrange = [500 600; 1000 1600];
newhcube = removeBands(hcube,'Wavelength', wlrange);
coloredImg = colorize(newhcube); % or coloredImg = colorize(hcube);
imshow(coloredImg);
댓글 수: 2
Image Analyst
2022년 9월 24일
In the code editor in MATLAB:
You might want to download the hyperspectral add-on from the Add-ons button on the Home tab of the tool ribbon.
답변 (1개)
Mandar
2022년 10월 17일
I understand that you want make use of the ‘hypercube’ function in the MATLAB.
As a workaround, you may need to install the Image Processing Toolbox Hyperspectral Imaging Library toolbox for accessing the functionalities.
You can download and install the toolbox by referring link below.
link:
댓글 수: 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!