MATLAB: How to play videos using implay function in specific axes

playing videos using implay in specific axes

i am trying to play videos in my matlab gui but i couldnt figure out how to play video in my specific axes. plz help me 🙂

Best Answer

You have axes in your gui, let's say they are called
axes1
(you can check the name of the axes by double clicking on it in GUIDE, then look for Tag.
Then the only thing you have to do is:
axes(handles.axes1);
implay(videohere);