Is 2d colormap supported by matlab?

1 Ansicht (letzte 30 Tage)
Ray Lee
Ray Lee am 28 Aug. 2017
Beantwortet: Image Analyst am 28 Aug. 2017
Generally in matlab we use 1D gradient colormap as
How do we use colormap like this
  6 Kommentare
Ray Lee
Ray Lee am 28 Aug. 2017
@ImageAnalyst Yes, you are right. The color and the brightness represent two data sets. I found an example here
Stephen23
Stephen23 am 28 Aug. 2017
Bearbeitet: Stephen23 am 28 Aug. 2017

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Image Analyst
Image Analyst am 28 Aug. 2017
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.

Weitere Antworten (0)

Kategorien

Mehr zu 颜色图 finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!