MATLAB: How to flip webcam input vertically

flipMATLAB and Simulink Student Suitewebcam

I have tried a bunch of the image rotation and flip methods found on forums, but they are not working for flipping webcam image in preview.
I have done:
canon=webcam
x=flipud(canon)
and a bunch of other methods but when you preview x the video is not flipped

Best Answer

Try this
f = figure();
ax = axes();
cam = webcam();
while true
frame = flipud(snapshot(cam));
if ishandle(ax)
imshow(frame, 'Parent', ax);
else
break;
end
end
delete(cam);