Which part i need to put implay()?

hObject, eventdata, handles, varargin

2 Comments

Shahmeer - please clarify how you want to use implay. Are you expecting the user to select a file and then press a button on your GUI that will launch this video viewer?

Sign in to comment.

 Accepted Answer

[file, filepath] = uigetfile('Select a file');
filename = fullfile(filepath, file);
implay(filename)

More Answers (1)

Image Analyst
Image Analyst on 6 May 2016
You don't use any of those. implay() opens the Video Viewer app. You can use Video Viewer to show MATLAB® movies, videos, or image sequences (also called image stacks). So just pass it one of those. See the help for implay().

Community Treasure Hunt

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

Start Hunting!