Skip to content

Commit b45cb8b

Browse files
committed
Removing redundant example, was renamed
1 parent 21e1986 commit b45cb8b

8 files changed

Lines changed: 5 additions & 183 deletions

File tree

java/libraries/video/examples/Capture/BackgroundSubtraction/BackgroundSubtraction.pde

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ int[] backgroundPixels;
1414
Capture video;
1515

1616
void setup() {
17-
// Change size to 320 x 240 if too slow at 640 x 480
1817
size(640, 480, P2D);
19-
18+
// Uses the default video input, see the reference if this causes an error
2019
video = new Capture(this, width, height);
2120
video.start();
2221
numPixels = video.width * video.height;

java/libraries/video/examples/Capture/BrightnessTracking/BrightnessTracking.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import processing.video.*;
1111
Capture video;
1212

1313
void setup() {
14-
size(640, 480, P2D); // Change size to 320 x 240 if too slow at 640 x 480
14+
size(640, 480, P2D);
1515
// Uses the default video input, see the reference if this causes an error
1616
video = new Capture(this, width, height);
1717
video.start();

java/libraries/video/examples/Capture/Disgrand/Disgrand.pde

Lines changed: 0 additions & 144 deletions
This file was deleted.

java/libraries/video/examples/Capture/Disgrand/Tuple.pde

Lines changed: 0 additions & 29 deletions
This file was deleted.

java/libraries/video/examples/Capture/FrameDifferencing/FrameDifferencing.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ int[] previousFrame;
1313
Capture video;
1414

1515
void setup() {
16-
size(640, 480, P2D); // Change size to 320 x 240 if too slow at 640 x 480
16+
size(640, 480, P2D);
1717
// Uses the default video input, see the reference if this causes an error
1818
video = new Capture(this, width, height);
1919
video.start();

java/libraries/video/examples/Capture/LivePocky/LivePocky.pde

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ void setup() {
2727
writeRow = height - 1;
2828
topRow = 0;
2929

30-
//frameRate(10);
3130
background(0);
3231
loadPixels();
3332
}
@@ -52,4 +51,4 @@ void draw() {
5251

5352
void captureEvent(Capture c) {
5453
c.read();
55-
}
54+
}

java/libraries/video/examples/Capture/Mirror2/Mirror2.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Capture video;
1717

1818
void setup() {
1919
size(640, 480, P2D);
20-
//set up columns and rows
20+
// Set up columns and rows
2121
cols = width / cellSize;
2222
rows = height / cellSize;
2323
colorMode(RGB, 255, 255, 255, 100);

java/libraries/video/examples/Capture/SlitScan/SlitScan.pde

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
* to the video capture height. If you would prefer otherwise,
77
* consider using the image copy() function rather than the
88
* direct pixel-accessing approach I have used here.
9-
*
10-
* Created December 2006.
11-
* Updated June 2007 by fry.
129
*/
1310
import processing.video.*;
1411

0 commit comments

Comments
 (0)