Loading...
Logo
Processing Forum
Hi,
I want track motion in a video, so I kinda modified the code given here to following:
Copy code
  1. // Learning Processing
  2. // Daniel Shiffman
  3. // http://www.learningprocessing.com

  4. // Example 16-13: Simple motion detection

  5. import processing.video.*;
  6. // Variable for capture device
  7. //Capture video;
  8. Movie video;
  9. // Previous Frame
  10. PImage prevFrame;
  11. // How different must a pixel be to be a "motion" pixel
  12. float threshold = 50;

  13. void setup() {
  14.   size(320,240);
  15.   //video = new Capture(this, width, height, 30);
  16.   video = new Movie(this, "D:\\M2U00569.mov");
  17.   video.play();
  18.   // Create an empty image the same size as the video
  19.   prevFrame = createImage(video.width,video.height,RGB);
  20. }

  21. void draw() {
  22.   
  23.   //video.read();
  24.   // Capture video
  25.   if (video.available()) {
  26.     // Save previous frame for motion detection!!
  27.     prevFrame.copy(video,0,0,video.width,video.height,0,0,video.width,video.height); // Before we read the new frame, we always save the previous frame for comparison!
  28.     prevFrame.updatePixels();
  29.     video.read();
  30.   }
  31.   
  32.   loadPixels();
  33.   video.loadPixels();
  34.   prevFrame.loadPixels();
  35.   
  36.   // Begin loop to walk through every pixel
  37.   for (int x = 0; x < video.width; x ++ ) {
  38.     for (int y = 0; y < video.height; y ++ ) {
  39.       
  40.       int loc = x + y*video.width;            // Step 1, what is the 1D pixel location
  41.       color current = video.pixels[loc];      // Step 2, what is the current color
  42.       color previous = prevFrame.pixels[loc]; // Step 3, what is the previous color
  43.       
  44.       // Step 4, compare colors (previous vs. current)
  45.       float r1 = red(current); float g1 = green(current); float b1 = blue(current);
  46.       float r2 = red(previous); float g2 = green(previous); float b2 = blue(previous);
  47.       float diff = dist(r1,g1,b1,r2,g2,b2);
  48.       
  49.       // Step 5, How different are the colors?
  50.       // If the color at that pixel has changed, then there is motion at that pixel.
  51.       if (diff > threshold) { 
  52.         // If motion, display black
  53.         pixels[loc] = color(0);
  54.       } else {
  55.         // If not, display white
  56.         pixels[loc] = color(255);
  57.       }
  58.     }
  59.   }
  60.   updatePixels();
  61. }
Modified line 11, 12 and 20

I am getting an error at line 47 

Exception in thread "Animation Thread" java.lang.ArrayIndexOutOfBoundsException: 720
at sketch_mar24a.draw(sketch_mar24a.java:67)
at processing.core.PApplet.handleDraw(Unknown Source)
at processing.core.PApplet.run(Unknown Source)
at java.lang.Thread.run(Thread.java:662)

Please do lemme know where I am doing wrong!

Thanks!


Replies(13)

I think the issue is video.width  and video.height will give you values like 0 or 1 the first couple of seconds...
so i'd suggest having a fixed video size in places like line 23 and insert a condition at the beginning of draw that checks that video.width & video.height give the desired values.
also i think your canvas should be the size of the video.
this is the quickest fix i could come up with:

Copy code
  1. import processing.video.*;
  2. // Variable for capture device
  3. //Capture video;
  4. Movie video;
  5. // Previous Frame
  6. PImage prevFrame;
  7. // How different must a pixel be to be a "motion" pixel
  8. float threshold = 50;

  9. int W = 640;
  10. int H = 480;

  11. void setup() {
  12.   size(W,H);
  13.   //video = new Capture(this, width, height, 30);
  14.   video = new Movie(this, "D:\\M2U00569.mov");
  15.   video.play();
  16.   // Create an empty image the same size as the video
  17.   prevFrame = createImage(W,H,RGB);
  18. }

  19. void draw() {
  20.   if (video.width < W || video.height < H) return;
  21.   
  22.   //video.read();
  23.   // Capture video
  24.   if (video.available()) {
  25.     // Save previous frame for motion detection!!
  26.     prevFrame.copy(video,0,0,video.width,video.height,0,0,video.width,video.height); // Before we read the new frame, we always save the previous frame for comparison!
  27.     prevFrame.updatePixels();
  28.     video.read();
  29.   }
  30.   
  31.   loadPixels();
  32.   video.loadPixels();
  33.   prevFrame.loadPixels();
  34.   
  35.   // Begin loop to walk through every pixel
  36.   for (int x = 0; x < video.width; x ++ ) {
  37.     for (int y = 0; y < video.height; y ++ ) {
  38.       
  39.       int loc = x + y*video.width;            // Step 1, what is the 1D pixel location
  40.       color current = video.pixels[loc];      // Step 2, what is the current color
  41.       color previous = prevFrame.pixels[loc]; // Step 3, what is the previous color
  42.       
  43.       // Step 4, compare colors (previous vs. current)
  44.       float r1 = red(current); float g1 = green(current); float b1 = blue(current);
  45.       float r2 = red(previous); float g2 = green(previous); float b2 = blue(previous);
  46.       float diff = dist(r1,g1,b1,r2,g2,b2);
  47.       
  48.       // Step 5, How different are the colors?
  49.       // If the color at that pixel has changed, then there is motion at that pixel.
  50.       if (diff > threshold) { 
  51.         // If motion, display black
  52.         pixels[loc] = color(0);
  53.       } else {
  54.         // If not, display white
  55.         pixels[loc] = color(255);
  56.       }
  57.     }
  58.   }
  59.   updatePixels();
  60. }


Maleo, thanks for the quick reply.

But the fix seems not to be working for me   I really need this fix. Can you suggest me some other options or code changes.

You are clear as what I am doing or should I let you know my purpose...???

I had it working on processing 1.5.1 / mac os x. you have to set the appropriate video size in W and H too.
other than that i can only suggest building up your sketch step by step. start with just having the video play back normally. then add more sophisticated processing like difference techniques.

According to this
      "Unfortunately the video handling in Processing is buggy"

How can I play video and analyse each frame at the same time without choppy video plays. The motto is to track the moving objects(multiple) in a video.

Please suggest...


Thanks again for the prompt reply Maleo
Anyone..???

I wan;t help with the following code:

Copy code
  1. import processing.opengl.*;
  2. import processing.video.*;

  3. Movie video;

  4. // Previous Frame
  5. PImage prevFrame;
  6. PImage currFrame;

  7. // How different must a pixel be to be a "motion" pixel
  8. float threshold = 50;

  9. // Setting the default width and height for video
  10. int vidWidth = 320;
  11. int vidHeight = 240;

  12. void setup() 
  13. {
  14.       size(vidWidth, vidHeight);
  15.     
  16.       video = new Movie(this, "..\\mov_vid\\paris.mov", 60);
  17.       video.play();
  18.     
  19.       // Create an empty image the same size as the video
  20.       currFrame = createImage(vidWidth, vidHeight, RGB);
  21.       
  22. }

  23. void draw() 
  24. {
  25.      
  26.         println("W: " + video.width + " H: " + video.height);
  27.         loadPixels();
  28.         currFrame = video;
  29.         if(video.width < vidWidth || video.height < vidHeight)
  30.             image(video, 0, 0);
  31.        updatePixels();
  32. }

  33. // Called every time a new frame is available to read
  34. void movieEvent(Movie m) 
  35. {
  36.       m.read();
  37. }
Why the video is choppy and plays for a while and then stops...???

Thanks in advance!
I recommend you to take a look at the GSVideo library. What codec are you using for your movie?
Actually I initially wanted to go with .mpg videos but its din't worked well with the  Movie class; so settled with converting them to .mov.



This is what I am doing.

Can I create an array of picture frames from a movie using GSVideo Library...???

Thanks in advance!
Hi I tried this example:  http://gsvideo.sourceforge.net/examples/GLGraphics/Movie/Movie.pde

But its not working for me its giving me an error:

The method putPixelsIntoTexture(PImage) in the type GLTexture is not applicable for the arguments()


Thanks!


You probably have an old version of GLGraphics. Download version 1.0 and it will work. 
Yeah bustup its working with the latest version thanks a ton for the update and answer...lemme see if am able to do whatever am planning to...
Stuck with a new problem, phew!

Please help; this time with GSVideo and GLTexture

if(tex.putPixelsIntoTexture())
  {
    tex.resize(movWidth, movHeight);
    PImage currFrame = new PImage(movWidth, movHeight); 
    tex.getImage(currFrame);       <--------------------------------------- this line is causing the JVM to crash
    //blobs = flob.calc(flob.binarize(currFrame));                      <----------------------------- want to achieve this
    //image(tex, 0, 0);                  <--------------------------------------- with this line the program of running fine
    image(currFrame, 0, 0);          
  }

Where  tex is a GLTexture object.

Detailed code:


Copy code
  1. // Using integration with GLGraphics for fast video playback.
  2. // All the decoding stages, until the color conversion from YUV
  3. // to RGB are handled by gstreamer, and the video frames are
  4. // directly transfered over to the OpenGL texture encapsulated
  5. // by the GLTexture object.
  6. // You need the GLGraphics library (0.99+) to use this functionality:
  7. // http://glgraphics.sourceforge.net/

  8. import processing.opengl.*;
  9. import codeanticode.glgraphics.*;
  10. import codeanticode.gsvideo.*;
  11. import s373.flob.*;


  12. GSMovie movie;
  13. GLTexture tex;

  14. // width and height of the movie frame
  15. int movWidth = 640;
  16. int movHeight = 480;

  17. // movie source path
  18. String movPath = "C:\\Users\\Debu\\Desktop\\Processing Temp Sketches\\mov_vid\\M2U00569.mov";

  19. // Flob parameters
  20. Flob flob;        // flob tracker instance
  21. ArrayList blobs;  // an ArrayList to hold the gathered blobs

  22. // Flob config parameters
  23. int tresh = 20;   // adjust treshold value here or keys t/T
  24. int fade = 25;
  25. int om = 1;
  26. int videores=128;//64//256
  27. String info="";
  28. PFont font;
  29. float fps = 60;
  30. int videotex = 3; //case 0: videotex = videoimg;//case 1: videotex = videotexbin; 
  31. //case 2: videotex = videotexmotion//case 3: videotex = videoteximgmotion;

  32. void setup() {
  33.   size(movWidth, movHeight, GLConstants.GLGRAPHICS);
  34.   background(0);
  35.     
  36.   movie = new GSMovie(this, movPath);
  37.   
  38.   // Use texture tex as the destination for the movie pixels.
  39.   tex = new GLTexture(this);
  40.   movie.setPixelDest(tex);  
  41.   movie.loop();
  42.   
  43.   // flob uses construtor to specify srcDimX, srcDimY, dstDimX, dstDimY
  44.   // srcDim should be video input dimensions
  45.   // dstDim should be desired output dimensions  
  46.   flob = new Flob(movie, width, height);
  47.   flob = new Flob(movie, this); 
  48.   flob = new Flob(movWidth, movHeight, width, height);
  49.   
  50.   flob.setTresh(tresh); //set the new threshold to the binarize engine
  51.   flob.setSrcImage(videotex);
  52.   flob.setImage(videotex); //  pimage i = flob.get(Src)Image();
  53.   
  54.   flob.setBackground(movie); // zero background to contents of video
  55.   flob.setBlur(0); //new : fastblur filter inside binarize
  56.   flob.setMirror(true,false);
  57.   flob.setOm(0); //flob.setOm(flob.STATIC_DIFFERENCE);
  58.   flob.setOm(1); //flob.setOm(flob.CONTINUOUS_DIFFERENCE);
  59.   flob.setFade(fade); //only in continuous difference
  60.   
  61.   // or now just concatenate messages
  62.   flob.setThresh(tresh).setSrcImage(videotex).setBackground(movie)
  63.   .setBlur(0).setOm(1).setFade(fade).setMirror(true,false);

  64.   font = createFont("monaco",9);
  65.   textFont(font);
  66.   blobs = new ArrayList();
  67. }

  68. void movieEvent(GSMovie movie) {
  69.   movie.read();
  70. }

  71. void draw() {
  72.   // If there is a new frame available from the movie, the 
  73.   // putPixelsIntoTexture() function will copy it to the
  74.   // video card and will return true.
  75.   /*if(movie.available())
  76.   {
  77.     //println("true");
  78.     movie.read();
  79.     blobs = flob.calc(flob.binarize(movie));
  80.   }*/
  81.   
  82.   if(tex.putPixelsIntoTexture())
  83.   {
  84.     tex.resize(movWidth, movHeight);
  85.     PImage currFrame = new PImage(movWidth, movHeight); 
  86.     println(currFrame);
  87.     tex.getImage(currFrame); 
  88.     //blobs = flob.calc(flob.binarize(currFrame));
  89.     //image(tex, 0, 0);
  90.     image(currFrame, 0, 0);
  91.     //println(tex);
  92.   } 
  93.   
  94.   //image(flob.getSrcImage(), 0, 0, width, height);
  95.   
  96.   //println(flob.getSrcImage());
  97. }

Based on the hello_flob.pde example; Flob Library

Thanks in advance!

I happened to check the following page of the forum

Thanks in advance and cheers for the support as a newbie am getting; want to learn it very fast so that I can help others... :)


Please somebody help...am stuck and desperately need help!

Thanks in advance!
Is possible to do it with combination of code of this videocapx software  http://www.videocapx.com they offer source code.