-
Notifications
You must be signed in to change notification settings - Fork 1
/
LazyScroller.pde
140 lines (107 loc) · 2.75 KB
/
LazyScroller.pde
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
// Imports
import gab.opencv.*;
import processing.video.*;
import java.awt.*;
import java.awt.event.*;
// Tweaks
int mouse_speed = 10;
int up_delay = 1800;
int down_delay = 2000;
Robot robot;
PFont pfont;
Capture video;
OpenCV opencv;
ArrayList<Contour> contours;
//Face detection constants
float DETECT_SCALE = 1.2;
int DETECT_MINNEIGHBOURS = 7;
int DETECT_MINSIZE = 0;
int DETECT_MAXSIZE = 0;
Rectangle[] faces;
boolean stopme = false;
//Workaround for delay
long lastTime = 0;
//Radius
int rstop = 40;
int rup = 40;
void setup() {
size(480, 360);
stroke(255, 255, 255);
strokeWeight(5);
noFill();
opencv = new OpenCV(this, 640, 480);
opencv.loadCascade(OpenCV.CASCADE_FRONTALFACE);
textSize(32);
lastTime = millis();
video = new Capture(this, 640, 480);
video.start();
try {
robot = new Robot();
robot.setAutoDelay(0);
}
catch (Exception e) {
e.printStackTrace();
}
}
void draw() {
if (video.available() == true) {
video.read();
}
image(video, 0, 0, 480, 360);
opencv.loadImage(video);
opencv.useColor(HSB);
faces = opencv.detect(DETECT_SCALE, DETECT_MINNEIGHBOURS, 0, DETECT_MINSIZE, DETECT_MAXSIZE);
ellipse(400, 200, rup, rup);
ellipse(80, 200, rstop, rstop);
scale(0.75);
opencv.setGray(opencv.getH());
opencv.inRange(18, 22);
contours = opencv.findContours(true, true);
for (int i = 0; i < faces.length; i++) {
rect(faces[i].x, faces[i].y, faces[i].width, faces[i].height);
if(stopme == false){
scroll_down();
}
for (int f=0; f<contours.size(); f++) {
if (contours.get(f).area() > 28000) {
//contours.get(f).draw();
stopme = false;
}
if (contours.get(f).containsPoint(int(400/0.75), int(200/0.75))) {
println("up");
rup = (frameCount*5 % 100) * (100 - (frameCount*5 % 100)) / 50;
stopme = true;
scroll_up();
}
if (contours.get(f).containsPoint(int(80/0.75), int(200/0.75)) ||
contours.get(f).containsPoint(int(85/0.75), int(200/0.75)) ||
contours.get(f).containsPoint(int(75/0.75), int(200/0.75)) ||
contours.get(f).containsPoint(int(80/0.75), int(195/0.75)) ||
contours.get(f).containsPoint(int(85/0.75), int(195/0.75)) ||
contours.get(f).containsPoint(int(75/0.75), int(195/0.75))) {
halt();
stopme = true;
}
}
}
}
void scroll_down(){
if ( millis() - lastTime > down_delay ) {
robot.mouseWheel(mouse_speed);
println("down");
lastTime = millis();
}
}
void scroll_up(){
text("Going up", 10, 30);
if ( millis() - lastTime > down_delay ) {
robot.mouseWheel(-mouse_speed);
println("up");
lastTime = millis();
}
}
void halt(){
println("stop ");
stopme = true;
text("Halt!", 10, 30);
}