Info

This question is closed. Reopen it to edit or answer.

I've been showing the Video. But how to take pictures of the Video to axes 2 so show image for SKIN DETECION. How do I take a picture from the Video (axes1) to Axes2 and Axes3?

1 view (last 30 days)
<<
>>

Answers (1)

Image Analyst
Image Analyst on 23 Mar 2016
Grab a snapshot, then switch axes.
thisImage = getsnapshot();
axes(handles.axes3);
imshow(thisImage);

Community Treasure Hunt

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

Start Hunting!