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

5 visualizaciones (últimos 30 días)
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

Respuesta aceptada

Image Analyst
Image Analyst el 6 de Mzo. de 2015
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 comentarios
Image Analyst
Image Analyst el 7 de Mzo. de 2015
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"?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Images en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by