xxxxxxxxxx
45
// https://kylemcdonald.github.io/cv-examples/
var capture;
var w = 640,
h = 480;
function setup() {
capture = createCapture(VIDEO);
createCanvas(w, h);
capture.size(w, h);
capture.hide();
}
function draw() {
capture.loadPixels();
if (capture.pixels.length > 0) { // don't forget this!
var pixels = capture.pixels;
var thresholdAmount = select('#thresholdAmount').value();
thresholdAmount /= 100.0; // this is the slider range
thresholdAmount *= 255; // this is the maximum value
var total = 0;
var i = 0;
for (var y = 0; y < h; y++) {
for (var x = 0; x < w; x++) {
var redValue = pixels[i];
var outputValue = 0;
if (redValue >= thresholdAmount) {
outputValue = 255;
total++;
}
pixels[i++] = outputValue; // set red
pixels[i++] = outputValue; // set green
pixels[i++] = outputValue; // set blue
i++; // skip alpha
}
}
var n = w * h;
var ratio = total / n;
select('#percentWhite').elt.innerText = int(100 * ratio);
}
capture.updatePixels();
image(capture, 0, 0, w, h);
}