Skip to content

Instantly share code, notes, and snippets.

@slambert
Created November 29, 2016 21:57
Show Gist options
  • Save slambert/8f0e96bb08ef0e66dc7fa9035cea403c to your computer and use it in GitHub Desktop.
Save slambert/8f0e96bb08ef0e66dc7fa9035cea403c to your computer and use it in GitHub Desktop.
You need to install the OpenCV library and Video library. Then put an image in the data folder and update line 14.
import gab.opencv.*;
import processing.video.*;
import java.awt.*;
PImage b;
Capture video;
OpenCV opencv;
void setup() {
size(640, 480);
video = new Capture(this, 640/2, 480/2);
opencv = new OpenCV(this, 640/2, 480/2);
opencv.loadCascade(OpenCV.CASCADE_FRONTALFACE);
b = loadImage("Happy_smiley_face.png"); // replace with your mask image
video.start();
}
void draw() {
scale(2);
opencv.loadImage(video);
image(video, 0, 0 );
noFill();
stroke(0, 255, 0);
strokeWeight(3);
Rectangle[] faces = opencv.detect();
println(faces.length);
for (int i = 0; i < faces.length; i++) {
println(faces[i].x + "," + faces[i].y);
//point(faces[i].x, faces[i].y);
image(b, faces[i].x, faces[i].y, faces[i].width, faces[i].height);
//point(faces[i].x, faces[i].y, faces[i].width, faces[i].height);
}
}
void captureEvent(Capture c) {
c.read();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment