How to add a video to matlab GUI ?
2 views (last 30 days)
Show older comments
i have set of codes within a loop that runs a video:
% Display the segmented video
SegBBox = PtsOffset;
SegBBox(1:BlobCount,:) = BBox;
SegIm = step(hDrawRectangles3, repmat(Segmented,[1 1 3]), SegBBox);
step(hThresholdDisplay, SegIm);
I would like to show this video in gui instead of playing it in a separate window.
pls help....
0 Comments
Accepted Answer
Sean de Wolski
on 22 May 2012
You'll need to save it as a movie
Unless you just want to use a timer object that updates an axes - a reasonable and simple alternative.
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!