Quantcast
Channel: Processing Forum
Viewing all articles
Browse latest Browse all 1768

Re : Flip the Video Capture on the X axis

$
0
0
Assuming that your sketch width is same as the video frame/image width. This should flip the image horizontally (i.e. Mirror). 

  pushMatrix();
  scale(-1,1);
  image(webcam.get(),-width,0);
  popMatrix();


Viewing all articles
Browse latest Browse all 1768

Trending Articles