Finding Height Using Color Spectrum

4 views (last 30 days)
I have an image, where the colors correspond to height. Please refer to below image. On the colormap spectrum: Blue is -500 meters Red is +500 meters
1) I want to Make plot for the height along Line 1
2) Make plot for the height along Line 2
3). Create a 2D array for the height values for the image. Basically, for every pixel position, give a corresponding height value. For simplicity, you can assume the grey pixels have a value of -1000 m.
Your help will be much appreciated.
Thanks in advance.
  12 Comments
Adnan Khan
Adnan Khan on 16 Mar 2021
Thanks sir for your kind help.
Adnan Khan
Adnan Khan on 16 Mar 2021
Accept answer tab is not appearing here. I want to accept the procedure you told because it worked. Thanks once again.

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 17 Mar 2021
(Moving down from comments)
timg = permute([1 0 0; 0 0 1], [3 1 2])
timg =
timg(:,:,1) = 1 0 timg(:,:,2) = 0 0 timg(:,:,3) = 0 1
image(timg)
thsv = rgb2hsv(timg)
thsv =
thsv(:,:,1) = 0 0.6667 thsv(:,:,2) = 1 1 thsv(:,:,3) = 1 1
thue = thsv(:,:,1)
thue = 1×2
0 0.6667
Pure red has a hue of 0. Pure blue has a hue of 2/3.
Pure red corresponds to a height of +500 meters. Pure blue corresponds to a height of -500 meters.
A*0 + B = 500
A*2/3 + B = -500
Subtract. 2*A/3 + (B-B) = -500 - 500 --> 2*A/3 = -1000 --> 2*A = -3000 -> A = -3000/2 --> A = -1500.
You should be able to work out B easily from this, and from that you should easily be able to calculate the formula that maps hue to height in your system.
Remember, Hue is the first pane of an HSV image, not all of the panes.

More Answers (0)

Products


Release

R2018a

Community Treasure Hunt

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

Start Hunting!