Spectral Resampling from hyperspectral to multispectral

2 次查看(过去 30 天)
Can anyone help me to do this spectral resampling of hyperspectral image to multispectral image using matlab. Please anyone help me to do this.
  3 个评论
Nandita  Sarkar
Nandita Sarkar 2022-6-3
Yes...The hyperspectral channels are resampled to the multispectral channel to obtain the resampled spectral response.
Image Analyst
Image Analyst 2022-6-3
OK, if youi don't like my Answer/solution below you can just scan every pixel and resample using interp1d.

请先登录,再进行评论。

回答(2 个)

Image Analyst
Image Analyst 2022-6-2
How many wavelength bands are you starting with and how many do you think you want to end up with?
Do they need to be actual wavelength bands? If you want you could use pca (demo attached) and use the PC's as the new images.

Bjorn Gustavsson
Bjorn Gustavsson 2022-6-4
If you have a hyper-spectral image, I_hs, on the format [n_y x n_x x n_lambda] and you want to reduce the number of wavelength-channels you might do something like this (hoofed live-edited and no-tested):
function I_ms = hyper2multi(I_hs,w_lambda)
sz_Ihs = size(I_hs);
sz_w = size(w_lambda);
I_ms = zeros([sz_Ihs(1:2),sz_w(2)]);
for i_lout = 1:sz_w(2)
for i_lin = 1:sz_Ihs(3)
I_ms(:,:,i_lout) = I_ms(:,:,i_lout) + I_hs(:,:,i_lin)*w_lambda(i_lin,i_lout);
end
end
end
where w_lambda should be an [n_lambda x n_multi] array with weighting-factors for the spectral response you want in your multi-spectral image (all zeros except a single 1 in a column if you want to extract a single wavelength-channel)
HTH

类别

Help CenterFile Exchange 中查找有关 Read, 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