How can I add a vertical line on an image plotted on an axes on MATLAB GUI

5 次查看(过去 30 天)
Hi, I am making a GUI that can browse image from directory and load it on an axes (and the user can rotate the image). I need to add a vertical line at the center of the image (preferably using button). But I am really lost here as I am new at MATLAB. So far, I can only make a GUI that can browse image and show it on an axes, and user can already rotate it using slider. Please tell me what to do to add the line using button. (Btw, I was trying to put my code here but it came out messy, anyone knows why?) Thanks a lot

采纳的回答

Image Analyst
Image Analyst 2015-3-6
For formatting tutorial, read this: http://www.mathworks.com/matlabcentral/answers/13205-tutorial-how-to-format-your-question-with-markup Basically paste, highlight, then click {}Code.
To draw a line on your image:
hold on;
[rows, columns, numberOfColorChannels] = size(yourImage);
midColumn = columns/2;
line([midColumn, midColumn], [1, rows], 'Color', [.8, .7, 0.1]);
You can change the color and location if you want.
  5 个评论
Image Analyst
Image Analyst 2015-3-7
After the user double clicks the line to accept it, you have to decide if you want to draw a line into the overlay or burn it into the image. I attach a demo that goes over all that. If I've answered all your questions, can you mark the answer as "Accepted"?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by