glv
3
Hello @m0nsterm0vi3 ,
This topic may be of interest to you:
I adapted this example:
https://processing.org/reference/libraries/video/Capture.html
And this code (modify example above) will invert and display the image:
void draw() {
if (cam.available() == true) {
cam.read();
}
image(cam, 0, 0);
PImage img = cam.copy();
img.filter(INVERT);
image(img, width/2, 0); // Moved it over
}
:)