Question

Suggest a method/algorithm to track the center point of the feature,

enter image description here

the features is part of a video. As the video is played, the feature keeps moving around but never goes out of the rectangle of size shown in figure.

I wish to track the center point over the duration of the video.

*the red point is not part of the image. I have overlaid it to show the center point I wish to track.

Was it helpful?

Solution

A very simple way:

  1. create an image with the pattern to recognize
  2. do cross-correlation along X and Y with your frames
  3. select the peaks of the X and Y correlation signals to identify position

There must be a lot of material around .. start here http://en.wikipedia.org/wiki/Video_tracking

OTHER TIPS

Try using vision.PointTracker in the Computer Vision System Toolbox.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top