How to add level on an image in matlab

조회 수: 2 (최근 30일)
Tanmoyee Bhattacharya
Tanmoyee Bhattacharya 2017년 9월 29일
댓글: Walter Roberson 2017년 9월 29일
I have created a temperature map for a rive basin(added).I have raingauge station at certain lat lon.I want to display them on image with level.How can we do it?

채택된 답변

Image Analyst
Image Analyst 2017년 9월 29일
What do you want the picture to look like at the rain gauge stations? Do you just want to plot, say, a red circle at the (x,y) coordinates of the stations? If so...
hold on;
plot(x, y, 'ro', 'MarkerSize', 15, 'LineWidth', 2);
If you want something fancier, like a small image, then you'll have to paste it over the image with indexing or masking.
  댓글 수: 1
Walter Roberson
Walter Roberson 2017년 9월 29일
If you want to put information about the location on the plot, such as a station identifier, then you can text() the information into place.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by