comparison include/Motion.hpp @ 165:50964af05a80

solved issue with header inclusion
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Thu, 29 Sep 2011 03:12:59 -0400
parents cde87a07eb58
children 9323427aa0a3
comparison
equal deleted inserted replaced
164:76610dcf3b8d 165:50964af05a80
30 30
31 void addPoint(const int& frameNum, const cv::Point2f& p, const cv::Mat& homography); 31 void addPoint(const int& frameNum, const cv::Point2f& p, const cv::Mat& homography);
32 32
33 void shorten(void); 33 void shorten(void);
34 34
35 void write(TrajectoryDBAccess<cv::Point2f>& trajectoryDB, const string& positionsTableName, const string& velocitiesTableName) const; 35 void write(TrajectoryDBAccess<cv::Point2f>& trajectoryDB, const std::string& positionsTableName, const std::string& velocitiesTableName) const;
36 36
37 #ifdef USE_OPENCV 37 #ifdef USE_OPENCV
38 void draw(cv::Mat& img, const cv::Mat& homography, const cv::Scalar& color) const; 38 void draw(cv::Mat& img, const cv::Mat& homography, const cv::Scalar& color) const;
39 #endif 39 #endif
40 40