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
177 Comments
17 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>

March 10th 2010 - 8:37am

Roll on the SDK! Unlimited Detail Technology http://youtu.be/Q-ATtrImCx4?a (via @somerandomdude)

Discussion

194 Responses to AS3 Webcam Motion Tracking

1 ... 15 16 17

Leave a Reply

Pingbacks / Trackbacks

  1. 1 year 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. 11 months ago Mindfock - Basic (twitchy) Motion Tracking

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

  5. 10 months 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. 10 months ago SOULWIRE! «

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

  7. 8 months 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. 6 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. 5 months ago .net Magazine关于Jam个人网站www.jpeg.cn访谈 at With Love And Joy

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

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

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

  11. 4 months ago SHOWGAME

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

  12. 3 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. 1 month 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. 3 weeks 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 [...]

  1. INMOTION 1 month ago

    Is there any way to hidde black box next to the camera? Ive been playing around without succes.
    Thanx!

    Reply to this comment

  2. INMOTION 1 month ago

    SOLVED.
    Just comment // _source…

    Reply to this comment

  3. Ventoline 1 month ago

    I have the same problem as Andre, i believe it is related to the Flash Player 10, i have been check different sources and i have the security box settings, but after allowing it is blank. Do you know where the problem come from?

    Reply to this comment

  4. Eugene 4 weeks ago

    Anyone would know if I could use online video instead of webcam ? Thanks.

    Reply to this comment

  5. Rachit Jain 3 weeks ago

    sir,
    I found your approach very helpful. I am a B>Tech student, final year, studying in Gandhinagar, India.
    I am working on some virtual games, and want to use HCI technologies for that. I was thinking of making games that can use webcam to get inputs. Presently I am working on a virtual billiards game, using Wii remote. I am also thinking of making some board games, which can use the webcam inputs.
    Is it possible to detect a cue or some particular object with your method. If so, please let me know.
    thanking you, looking forward to hear from you.
    Keep up the good work..:)

    Reply to this comment

  6. James Mugford 2 weeks ago

    This is awsome, but could you help me get the background white?

    It may come to me when returning with a fresh mindset, but your help would go a long way.

    Best,
    James

    Reply to this comment

  7. Dennis Mars 2 weeks ago

    I haven’t looked at the code at all so forgive me but when I click on the picture above is something supposed to happen? Downloaded the source and ran the demo and still nothing. I’m pretty sure my camera is set up right, I just video chatted a second ago…

    Just trying to join in the frivolity of it all…

    Reply to this comment

  8. Dennis Mars 2 weeks ago

    You can’t ignore that last comment. I just had to change some settings in flash!

    Reply to this comment

  9. Lymphatus 5 days ago

    It seems the AS2 version was taken out of the .zip..
    is there any way to get it? If you could mail it to me, that would be much appreciated.
    I am an art student experimenting with motion tracking, but I only have experience with AS2..

    Reply to this comment

1 ... 13 14 15