Place a line as a marker in a 2D image
2 views (last 30 days)
Show older comments
Hi everybody,
I would like to add colored lines (let's say red) to a 2D image i created with imagesc. I am going to analyse a certain colom of this image, and 1 would like to add colored vertical lines to the image, so I can show which lines have been analysed (to show in a report). I hope someone can help me with this.
Thanks! Ellen
0 Comments
Accepted Answer
Paulo Silva
on 21 Feb 2011
load clown
clims = [10 60];
imagesc(X,clims)
colormap(gray)
XPosition=100 %choose where to draw the line
line([XPosition XPosition],get(gca,'Ylim'),'Color',[1 0 0])
0 Comments
More Answers (0)
See Also
Categories
Find more on Geometric Transformation and Image Registration in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!