It may help to use a buffer.Also the camera feed flickers constantly
- PImage videoBuffer;
- void draw(){
- if(video.available()){
- video.read();
- videoBuffer = video;
- }
- if(videoBuffer != null){
- image(videoBuffer, 0, 0);
- }
- }
It may help to use a buffer.Also the camera feed flickers constantly