view include/Feature.hpp @ 125:28907fde9855

work on klt tracker (problem on computer at poly)
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Tue, 16 Aug 2011 19:35:07 -0400
parents 45a426552aaa
children 4742b2b6d851
line wrap: on
line source

#ifndef FEATURE_HPP
#define FEATURE_HPP

#include "opencv/cv.h"

#include "src/Trajectory.h"

class Feature {

protected:
  int id;
  int firstInstant;
  Trajectory<cv::Point2f> trajectory;
};

#endif