// Saves your image if pixels reach the end of the frame
if (drawPositionX < 0) {
saveFrame();
drawPositionX = width - 1;
}
// Takes another photo if you click the mouse.
if(mousePressed) {
drawPositionX = width - 1;}
}
}
this is a slitscan program i updated to save images and restart the photo by clicking
I have been working on and researching all day how to get Movie movie to break down into pixels then load pixels the same way as a slit scan, so i could use a movie file rather than the built in camera on my computer.
Does anyone knows what i need to change to call the movie in and get it to only display the center pixels