I want to do some analysis on this hyperspectral image but when i load this in the matlab workspace it say "Cannot display summaries of variables with more than 524288 elements". my value is 614x1848x220 uint16. how do i overcome this problem

조회 수: 2 (최근 30일)
I want to do some analysis on this hyperspectral image but when i load this in the matlab workspace it say "Cannot display summaries of variables with more than 524288 elements". my value is 614x1848x220 uint16. how do i overcome this problem
  댓글 수: 7
Walter Roberson
Walter Roberson 2017년 7월 1일
cat(3, firstband, secondband, thirdband)
but since all of your data is probably in a 3D array, just extract
bands = [17 53 58]; %for example
combined_bands = YourHyperImage(:, :, bands);

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Display Point Clouds에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by