フィルターのクリア

how can i write a code in order to get spectral reflectance plot of a pixel in a hyperspectral image

4 ビュー (過去 30 日間)
I want to get the reflectance profile of a pixel.how can the code be written for a hypeerion hyperspectral data
  1 件のコメント
Shrutika Sawant
Shrutika Sawant 2017 年 2 月 27 日
編集済み: Walter Roberson 2017 年 2 月 27 日
Use the following code
reflectance = squeeze(img(i, j,:));
reflectance = reflectance/max(reflectance(:));
plot(reflectance)

サインインしてコメントする。

回答 (1 件)

Image Analyst
Image Analyst 2014 年 1 月 4 日
Assuming you have a 3D matrix where each image plane is the scene taken at a different wavelength, you can just get a spectrum like this:
theSpectrum = hyperSpectralImage3D(row, column, :);
  7 件のコメント
yanjie qi
yanjie qi 2016 年 2 月 27 日
I tried it was right, and I also ploted it.
Image Analyst
Image Analyst 2017 年 3 月 8 日
ALINA, I'm not sure how to answer. Please provide more info.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeHyperspectral Image Processing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by