필터 지우기
필터 지우기

How to dispaly the value in imshow

조회 수: 6 (최근 30일)
Kwanghun Choi
Kwanghun Choi 2017년 12월 12일
편집: Chris Perkins 2017년 12월 14일
I make code for inserting elevation value into pixel on contour line
Red line : not inserted
yellow point : Selected point to insert elevation
violet line : already inserted<-automatically when I insert elevation into yellow point
problem is I forget the value easily. So I want to display the value of violet line. I use imshow to display that image. How can I add displaying value of pixel on that image??

채택된 답변

Chris Perkins
Chris Perkins 2017년 12월 14일
편집: Chris Perkins 2017년 12월 14일
Hi Kwanghun,
You can use "annotation" to place text on your figure.
Here is an example:
% Just setting up a sample image, your image would replace this section
>> figure
>> imshow('peppers.png');
% You can set this to be any value you would like,
% depending on how your violet line value is represented in your code
>> valueOfVioletLine = 27.3;
% Making the Annotation
>> annotation('textbox',[.2 .2 .3 .3],'String',valueOfVioletLine,'LineStyle','none')
You can change the annotation's properties quite a bit to customize the appearance. See the following documentation links for more information.

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!