@Maurice, once you have the image form the video grabber, you could iterate pixel by pixel, and for each of them:
ofColor c = image.getColor(x, y);
float intensity = c.getLightness();
Have a look at this tutorial http://openframeworks.cc/tutorials/graphics/generativemesh.html, it uses a treshold too.