comparison include/Feature.hpp @ 119:45a426552aaa

compilation of very simple feature class with trajectory
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Mon, 15 Aug 2011 11:39:25 -0400
parents
children 4742b2b6d851
comparison
equal deleted inserted replaced
118:b3e3d9f80a6a 119:45a426552aaa
1 #ifndef FEATURE_HPP
2 #define FEATURE_HPP
3
4 #include "opencv/cv.h"
5
6 #include "src/Trajectory.h"
7
8 class Feature {
9
10 protected:
11 int id;
12 int firstInstant;
13 Trajectory<cv::Point2f> trajectory;
14 };
15
16 #endif