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

5 views (last 30 days)
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

Accepted Answer

Image Analyst
Image Analyst on 9 Nov 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 Comments
Image Analyst
Image Analyst on 9 Nov 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 on 9 Nov 2012
Edited: Steven on 9 Nov 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

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!