I have a set of (x,y) coordinates that I need to mark on a given image in a given color. Can someone help me in doing this. Thanks in advance.
2 ビュー (過去 30 日間)
古いコメントを表示
I have a set of (x,y) coordinates that I need to mark on a given image in a given color. Can someone help me in doing this. Thanks in advance.
0 件のコメント
回答 (1 件)
Pavithra Ashok Kumar
2016 年 1 月 22 日
I understand you want to add points to an existing image . You can do it in two ways.
2. Next method is to use "plot". You do not need any additional toolbox to achieve this.
>> image(magic(5))
>> hold on;
>> plot(1,2,'r.','MarkerSize',20);
1 件のコメント
Dima Lisin
2016 年 1 月 22 日
As of R2013a vision.MarkerInserter has been deprecated. Please use the insertMarker function instead.
参考
カテゴリ
Help Center および File Exchange で Computer Vision with Simulink についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!