フィルターのクリア

input elevation on contor line of map

1 回表示 (過去 30 日間)
Kwanghun Choi
Kwanghun Choi 2017 年 10 月 25 日
編集済み: KSSV 2017 年 10 月 25 日
Hi there :). I wanna ask one question. I finally extract contour line from a map. then I have to input elevation value to make 3D model. I know that elevation of red point on image is 460m. But I don't know how to input that in certain pixel. please help me. How can I do?

採用された回答

KSSV
KSSV 2017 年 10 月 25 日
As you have the locations i.e (x,y) values, your third i.e z value would be elevation.
  3 件のコメント
KSSV
KSSV 2017 年 10 月 25 日
編集済み: KSSV 2017 年 10 月 25 日
I = imread('Inked20171025_130754_LI.jpg') ;
I1 = rgb2gray(I) ;
[y,x] = find(I1==88) ;
imshow(I)
hold on
plot(x,y,'.b')
(x,y) are the locations of red color in your image
Kwanghun Choi
Kwanghun Choi 2017 年 10 月 25 日
Thank you!! It is very useful for me :)

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

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange조명, 투명도, 음영 についてさらに検索

Community Treasure Hunt

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

Start Hunting!