p5.beholder
Version:
A p5 library to facilitate using the Beholder system for Aruco marker detection.
17 lines (15 loc) • 452 B
JavaScript
function setup() {
createCanvas(640, 480);
p5beholder.prepare();
// makes the timeout a bit longer, so there are less false negatives in detection
p5beholder.setMarkersTimeout(100);
// if marker 0 is present, the key 65 ("a") is pressed
p5beholder.markerPresenceToKey(0, 65);
}
function draw() {
background("#ff000011");
// if key "a" is pressed, change the background to blue
if (keyIsDown(65)) {
background("#0000ffff");
}
}