Changeset 68 in flair-dev for trunk/include/FlairVisionFilter
- Timestamp:
- Mar 6, 2018, 12:14:17 PM (7 years ago)
- Location:
- trunk/include/FlairVisionFilter
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/FlairVisionFilter/HoughLines.h
r44 r68 17 17 namespace core { 18 18 class cvimage; 19 class cvmatrix;19 class Matrix; 20 20 } 21 21 namespace gui { … … 56 56 float GetOrientation(void) const; 57 57 float GetDistance(void) const; 58 core:: cvmatrix *Output(void) const;58 core::Matrix *Output(void) const; 59 59 60 60 private: … … 69 69 float distance,orientation; 70 70 CvMat* linesStorage; 71 core:: cvmatrix *output;71 core::Matrix *output; 72 72 }; 73 73 } // end namespace filter -
trunk/include/FlairVisionFilter/OpticalFlowSpeed.h
r50 r68 17 17 namespace core 18 18 { 19 class cvmatrix;19 class Matrix; 20 20 } 21 21 } … … 71 71 * Second line is speed along y axis. \n 72 72 */ 73 core:: cvmatrix *Output() const;73 core::Matrix *Output() const; 74 74 75 75 private: … … 83 83 void UpdateFrom(const core::io_data *data); 84 84 85 core:: cvmatrix *output;85 core::Matrix *output; 86 86 }; 87 87 } // end namespace filter
Note:
See TracChangeset
for help on using the changeset viewer.