MATLAB: How to add a video to matlab GUI

guiguidematlab guivideo

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

Best Answer

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