Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. import processing.video.*;
  2.  
  3. Capture video;
  4.  
  5. void setup(){
  6.   size(640,480);
  7.   video = new Capture(this,640,480,"Logitech HD Webcam C525");
  8.   video.start();
  9. }
  10.  
  11. void draw(){
  12.   //video.read();
  13.   image(video,0,0);
  14. }
  15.  
  16. void captureEvent(Capture c){
  17.   c.read();
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement