How to add a video to matlab GUI ?

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....

 Accepted Answer

Sean de Wolski
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.

More Answers (0)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!