This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Core Javadoc and Libraries Javadoc.

Class

Capture

Name

stop()

Examples
import processing.video.*; 
Capture cam; 
 
void setup() { 
  size(200, 200); 
  cam = new Capture(this);
  cam.start(); 
} 
 
void draw() { 
  if (cam.available()) { 
    // Reads the new frame
    cam.read(); 
  } 
  image(cam, 0, 0); 
} 

void mousePressed() {
  cam.stop();
}

Description Stops capturing frames from an attached device.
Syntax
.stop()
Returnsvoid
Updated on January 21, 2019 10:05:15am EST

Creative Commons License