Motion Tracking using Java

From HandWiki

Motion Tracking using Java is the process of locating a moving object (or several ones) in time. An algorithm analyses the video frames and outputs the location of moving targets within the video frame.

Libraries to Implement Motion tracking

OpenCV

It's a relatively easy thing for computers to “see” video, but “computer vision” goes a step further, applying a wide range of techniques by which computers can begin to understand and process the content of a video input. These techniques tend toward the primitive, but they can also produce aesthetically beautiful results. The best place to start with computer vision has long been the standard library, OpenCV. A free library[1] developed by Intel and with ongoing use in a variety of applications, OpenCV is a C/C++-based tool not just for things like motion tracking, but video processing in general.

JMyron

JMyron (aka WebcamXtra) is an external library[1] for Processing that allows image manipulation without having to hard code everything.[2][3]

JMTF

The Java Motion Tracking Framework (JMTF) is a modular framework for detecting and tracking motion in prerecorded image sequences. Unlike others, it is pure java and requires therefore no native libraries. The JMTF is free software and available under a BSD license.[4]

Using JMF

The Java Media Framework API (JMF)[1] enables audio, video and other time-based media to be added to applications and applets built on Java technology. This optional package, which can capture, playback, stream, and transcode multiple media formats, extends the Java 2 Platform, Standard Edition (J2SE) for multimedia developers by providing a powerful toolkit to develop scalable, cross-platform technology. Java with JMF can be used to implement a motion detection engine.[5][6]

References