필터 지우기
필터 지우기

Is 2d colormap supported by matlab?

조회 수: 1 (최근 30일)
Ray Lee
Ray Lee 2017년 8월 28일
답변: Image Analyst 2017년 8월 28일
Generally in matlab we use 1D gradient colormap as
How do we use colormap like this
  댓글 수: 6
Ray Lee
Ray Lee 2017년 8월 28일
@ImageAnalyst Yes, you are right. The color and the brightness represent two data sets. I found an example here
Stephen23
Stephen23 2017년 8월 28일
편집: Stephen23 2017년 8월 28일

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

채택된 답변

Image Analyst
Image Analyst 2017년 8월 28일
Ray, if you have two parameters, air pressure and frequency, you can't use a colormap and you'll have to create an RGB image instead. You can get the color like this, assuming air pressure and frequency are the row and column of your "colormap" image:
for col = 1 : columns
for row = 1 : rows
thisColor = colormap2D(frequency(row, column), pressure(row, column), :) % A 1-by-3 vector
rgbImage(row, column, :) = thisColor;
end
end
So it has a pressure image and a frequency image. For exvery pixel, it gets the pressure and frequency and uses those as an index to get the desired color for that pixel, which it assigns to a new RGB image.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 颜色图에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!