AS3 Motion Tracking and Detection

Update

Ok, you can now grab the MotionTracker source code (AS2 & AS3). Version 2 eventually will include the other methods for detecting and tracking motion which I mentioned. For now I have just included code for the technique used in the demo.

Download: AS3 Webcam Motion Tracking

For those of you without access to a webcam (and as an example of a practical use for this class) here is a short video demonstrating the program I wrote for the installation piece.

End of update

Webcam required to view the demo (obviously…)

I’m currently working on putting up a show, part of which will be a live generative piece, constructed from the movement of visitors in the gallery space. So of course I needed a method for not only detecting but tracking motion. I’ve seen some of Grant Skinner and Mario Klingemann’s incredible experiments in this field, the most accurate of which used a coloured object in the camera’s field of vision (such as a ball or glove) to track movement, however I wanted the live response of the artwork to be a surprise to the viewer, and so asking them to hold a coloured object would have detracted from the overall impact.

If you ever want to be amazed by the human mind, try recreating the tasks that it performs, particularly those which we take for granted; you will quickly realise the incredible amount of computation which must be happening just to, for example, detect movement and track an object, or to discern more than one object and their relative motions, velocities and distances. This isn’t an essay on Neuroscience though so I’ll save that for another time…

Anyway; I researched the concept of motion tracking, and made some notes on my own ideas. A few possible approaches emerged.

One of the most attractive ideas was to divide the screen into a grid, and average the colours within each segment at regular intervals. The difference in brightness within each segment (from one calculation to the next) would determine whether or not motion had occurred in this area of the screen. Using this data, clusters of segments with a high rate of change could be used to assume an object in motion. This approach is quite accurate, however it would require a lot of getPixel and setPixel, as well as converting these results into Hue, Saturation, Brightness objects; all of which would be quite processor heavy. A decent computer could handle this fairly easily, however I had to also consider the processing load of the actual generative work running over the top.

The method I used in the end was much lighter, and providing the parameters could be adjusted to suit the environment, it would yield enough accuracy to provide a quite responsive tracking point for the artwork to follow.

Here’s how it works

  • After the camera object is set up, it is passed to a MotionTracker class I wrote, which extends the Point object. The MotionTracker class contains two BitmapData objects; one representing the current data from the webcam, the other is used to store the previous frame.
  • When the update method is called, the new frame is drawn on top of the previous using the difference filter.
  • The result then has a ColorMatrixFilter applied to it, increasing the contrast of the image and dropping the darker areas (with less movement) further into the background.
  • A blur filter is then applied in order to further reduce noise and to form blobs from areas where more movement is occurring.
  • The threshold method is then called in the resulting BitmapData, effectively causing all near black pixels to be ignored and all light pixels (where movement has been detected) to be set to a certain colour.

So that takes care of the motion detection, but what about the tracking?

  • First we call the getColorBoundsRect method on the BitmapData object, which gives us a Rectangle object representing the area occupied by pixels of the colour we used when applying the threshold filter.
  • If the rectangle has an area larger than a specified constant, then sufficient movement is occurring and it can be tracked (choosing to ignore small areas of movement helps to eradicate noise caused by background and other interferences).
  • We then find the centre point of this rectangle, and then move the x and y position of the MotionTracker instance to these coordinates, applying some gentle easing to give more continuity to the movement.

I will post some source code once the MotionTracker class has been refined, and once I have build a nicer API so that, amongst other things, you can create your own UI for tweaking parameters at runtime; a useful feature if you have requirements such as mine where getting the most accuracy from a particular environment is important.

Download: AS3 Webcam Motion Tracking

You can also download the AS3 Motion Tracking source code from the soulwire code repository.

Posted on 06 Jun 2008
189 Comments
23 Trackbacks

Meta

AS3 Webcam Motion Tracking was posted on June 6th 2008 in the category Code / Actionscript 3.0, Code, Flash, Lab, Open Source and tagged; , , , , , , .

You can Leave a comment.

Twitter <follow>

September 2nd 2010 - 8:44am

I Hate Perfume » http://is.gd/eR5FP

Discussion

210 Responses to AS3 Webcam Motion Tracking

1 ... 16 17 18

Leave a Reply

Pingbacks / Trackbacks

  1. 2 years ago dbis interactive limited - dbis interactive communication blog » Motion Tracking in Flash

    [...] is another reference of Flash based motion tracking. This entry is filed under Uncategorized. You can follow any [...]

  2. 1 year ago AS3 Colour class for extracting the color palette from a BitmapData image or photo, ColourUtils.as

    [...] AS3 webcam Motion Tracking 12% similar Tracking an object’s movement [...]

  3. 1 year ago Week 7: Loading External Content, Video and Sound Playback, Microphone and Camera - Advanced Flash: Actionscript

    [...] The Camera class is used to playback video that is pulled in from a web camera attached to your computer. The video can be used to build streaming web cam applications as well as computer vision projects. [...]

  4. 1 year ago Mindfock - Basic (twitchy) Motion Tracking

    [...] Most of the concepts are explained in detail here and there. [...]

  5. 1 year ago Technical Overview « iDAT 203 - Negotiated Project

    [...] The other day I found someone who created a tracking system entirely in flash (follow the link) I thought this was pretty cool, it uses flash and papervision 3D to produce the graphics. [...]

  6. 1 year ago SOULWIRE! «

    [...] http://blog.soulwire.co.uk Posted by joshshard Filed in Code, Motion Tracking No Comments » [...]

  7. 1 year ago [Actionscript 3] Motion-Tracking - FlepStudio forum

    [...] Ciao, ho trovato il file as, in as3 e as2 per il motion Tracking a questo indirizzo: Flash AS3 Webcam Motion Tracking | Detecting and tracking webcam movement prova a darci un’occhiata….. volevo chiederti, ma il movimento

  8. 11 months ago REDBLIND » Blog Archive » An Intro to Color/Motion tracking

    [...] Tracking http://blog.soulwire.co.uk/2008/06/06/webcam-motion-detection-tracking/ This is motion tracking it it’s simplest form. This is the post I started on.  Ultimately, [...]

  9. 10 months ago .net Magazine关于Jam个人网站www.jpeg.cn访谈 at With Love And Joy

    [...] Soulwire Motion Detection [...]

  10. 9 months ago 01Media Blog β1.5 » .net Magazine关于Jam个人网站www.jpeg.cn访谈

    [...] 3) Soulwire Motion Detection 虽然功能简单不太精确,但由于消耗CPU较低且数据量小,成为了我追踪脸部运动的最终选择。 [...]

  11. 9 months ago SHOWGAME

    [...] 3) Soulwire Motion Detection 虽然功能简单不太精确,但由于消耗CPU较低且数据量小,成为了我追踪脸部运动的最终选择。 [...]

  12. 9 months ago Catherine Grevet » Blog Archive » Motion Tracking

    [...] http://blog.soulwire.co.uk/flash/actionscript-3/webcam-motion-detection-tracking/ We ended up using this for our final prototype and it worked like a charm. [...]

  13. 7 months ago flairjax » Apple ISlate insider info.

    [...] on the screen. This is similar to how flash is able to do this by recognizing the bitmapdata (seen here), as well as incorporating the touch sensing. So as the Apple invite shows you can place a cut of [...]

  14. 6 months ago Tutorial Flash – Webcam Motion Tracking | Fedeweb

    [...] la risposta: AS3 Webcam Motion Tracking, articolo di soulwire, dove troverai i sorgenti da scaricare e una spiegazione di come funziona il [...]

  15. 5 months ago Pitching the Microphone with Flash Player 10.1 Beta

    [...] Looks like he’s really getting somewhere from those example videos. I guess one approach might be to render the sound data samples to bitmaps and run the sort of blend, colour threshold comparisons that you achieve with Flash WebCam motion detection. [...]

  16. 4 months ago Soulwire « MovebyNature

    [...] http://blog.soulwire.co.uk/code/actionscript-3/webcam-motion-detection-tracking ▶ No Responses /* 0) { jQuery('#comments').show('', change_location()); jQuery('#showcomments a .closed').css('display', 'none'); jQuery('#showcomments a .open').css('display', 'inline'); return true; } else { jQuery('#comments').hide(''); jQuery('#showcomments a .closed').css('display', 'inline'); jQuery('#showcomments a .open').css('display', 'none'); return false; } } jQuery('#showcomments a').click(function(){ if(jQuery('#comments').css('display') == 'none') { self.location.href = '#comments'; check_location(); } else { check_location('hide'); } }); function change_location() { self.location.href = '#comments'; } }); /* ]]> */ Click here to cancel reply. [...]

  17. 3 months ago Pixel Expander Project » Plus d’info sur la détection de mouvement

    [...] Autre source Classé dans : Uncategorized — Gauth @ 17/05/2010 Comments (0) [...]

  18. 3 months ago AnthemGDA » Blog Archive » 15 Detailed Expert Tutorials for ActionScript 3

    [...] 3. AS3 Webcam Motion Tracking [...]

  19. 3 months ago AS3 Webcam Motion Tracking « That the way Kiwi can do

    [...] blog.soulwire.co.uk Categories: Actionscript 3 Comments (0) Trackbacks (0) Leave a comment [...]

  20. 3 weeks ago code review:: : « summer placement::2010/dublin

    [...] we import from global class files folder. MotionTracker and ColorMatrix are class files i found on this amazing website. if i would open last 3 class files, they would appear as longs sheets of code. i [...]

  1. @flashopen 3 months ago

    Thanks.
    Your code will help me with a couple of demos, I did with AS2 some time ago, and that I’d like to upgrade to AS3.
    Cheers

    Reply to this comment

  2. Mr_A 3 months ago

    When I try to publish this from Flash source file, nothing happens. It doesn’t ask to allow access to the camera. If I just run the swf file – it works fine (and does ask for access to camera). I’m using Flash CS4 10.0.2. Can anyone think why it wouldn’t work?

    Also, there is no sign of AS2 demo in the zip??

    Please help. Thanks.

    Reply to this comment

  3. hyde 2 months ago

    How much would you charge if using your code for some bisnuess project?

    Reply to this comment

    1. Soulwire 2 months ago

      It is free to use for commercial projects, but please give credit if appropriate and let me know what you do with it as I’m interested in how you use it!

  4. Mr_A 2 months ago

    The problem here was to do with local security settings of Flash. I moved the folder to the desktop and it worked. However, I can’t change the settings because every time I go to the Flash Player settings (in any browser), it crashes with the “…. If it continues to run your computer might become unresponsive”, and that’s a movie set up by Adobe!! But that’s a different story.

    This motion tracking class is excellent. Thanks indeed!

    Reply to this comment

  5. vonramsey 2 months ago

    AS3 Motion Tracking was the best project on the net. What about the “v2″, will you update it? It would be so great if you do the “v2″, i wait so long time for it. Thanks any way, you’re my mentor!

    Reply to this comment

  6. hyde 1 month ago

    Thanks for your help. The project is still on the way. I will show you some demo when my work is done.

    Reply to this comment

1 ... 14 15 16