xxxxxxxxxx
44
// Note: ObjectDetector is not (yet) available in ml5.js version 1.
// This is thus including an earlier version of the library in index.html.
let video;
let detector;
let detections = [];
function preload() {
detector = ml5.objectDetector('coco-ssd');
}
function setup() {
createCanvas(640, 480);
// Create the webcam video and hide it
video = createCapture(VIDEO);
video.size(width, height);
video.hide();
detector.detect(video, gotDetections);
}
function gotDetections(err, results) {
if (results) {
detections = results;
}
detector.detect(video, gotDetections);
}
function draw() {
image(video, 0, 0, width, height);
for (let i=0; i < detections.length; i++) {
let detection = detections[i];
noStroke();
fill(255);
text(detection.label, detection.x + 4, detection.y + 10)
noFill();
stroke(255, 0, 0);
strokeWeight(3);
rect(detection.x, detection.y, detection.width, detection.height);
}
}