Borrar filtros
Borrar filtros

how to draw an updating rectangle object on a video stream ?

1 visualización (últimos 30 días)
Hi there,
I am beginninger of matlab. I tried myCameraGUI example which build up a simple camera preview inferface. My question is I cannot find a way to draw a updating rectangle object on the top of streamed video. I do have tried many times, but fail in the end. Does anyone know how to do that? Any direction, webpage, or even a function would be appreciated. Thank you.
Steven

Respuesta aceptada

Image Analyst
Image Analyst el 9 de Nov. de 2012
It's possible to have graphics in the overlay above your live video. Did you call the preview() function to get live video, and then call plot() to plot your box?
  3 comentarios
Image Analyst
Image Analyst el 9 de Nov. de 2012
You need two x and two y, not one. Try calling line just like this
axes(handles.cameraAxes);
hold on;
line([x1 x2], [y1 y2]);
Steven
Steven el 9 de Nov. de 2012
Editada: Steven el 9 de Nov. de 2012
Could I ask you a question further? Say I'd like to process the input video frame by frame, and base on each frame that I get from the source camera I calculate the box and then update the box that I originally ploted on the video, what is best way of doing this in terms of system performance? Could you please recommand me a few functions that could do this. thanks a lot

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by