update capture example

This commit is contained in:
codeanticode
2012-06-04 18:26:15 +00:00
parent c6e051a818
commit aec914d973

View File

@@ -41,9 +41,9 @@ void setup() {
void draw() {
if (cam.available() == true) {
cam.read();
image(cam, 0, 0);
// The following does the same, and is faster when just drawing the image
// without any additional resizing, transformations, or tint.
//set(0, 0, cam);
}
image(cam, 0, 0);
// The following does the same, and is faster when just drawing the image
// without any additional resizing, transformations, or tint.
//set(0, 0, cam);
}