diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/Feature.hpp	Mon Aug 15 11:39:25 2011 -0400
@@ -0,0 +1,16 @@
+#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