Changeset 214 in flair-src for trunk/lib/FlairVisionFilter
- Timestamp:
- Feb 7, 2018, 5:49:27 PM (7 years ago)
- Location:
- trunk/lib/FlairVisionFilter/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairVisionFilter/src/HoughLines.cpp
r157 r214 14 14 #include "HoughLines.h" 15 15 #include <cvimage.h> 16 #include < cvmatrix.h>16 #include <Matrix.h> 17 17 #include <Layout.h> 18 18 #include <GroupBox.h> … … 49 49 desc->SetElementName(2,0,"orientation deg"); 50 50 desc->SetElementName(3,0,"line_detected"); 51 output=new cvmatrix(this,desc,floatType,name);51 output=new Matrix(this,desc,floatType,name); 52 52 delete desc; 53 53 … … 90 90 } 91 91 92 cvmatrix *HoughLines::Output(void) const {92 Matrix *HoughLines::Output(void) const { 93 93 return output; 94 94 } -
trunk/lib/FlairVisionFilter/src/HoughLines.h
r122 r214 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/lib/FlairVisionFilter/src/OpticalFlowSpeed.cpp
r157 r214 14 14 #include "OpticalFlowSpeed.h" 15 15 #include "OpticalFlowData.h" 16 #include < cvmatrix.h>16 #include <Matrix.h> 17 17 #include <Object.h> 18 18 … … 30 30 desc->SetElementName(0,0,"vx"); 31 31 desc->SetElementName(1,0,"vy"); 32 output=new cvmatrix(this,desc,floatType,name);32 output=new Matrix(this,desc,floatType,name); 33 33 delete desc; 34 34 … … 81 81 } 82 82 83 core:: cvmatrix *OpticalFlowSpeed::Output() const83 core::Matrix *OpticalFlowSpeed::Output() const 84 84 { 85 85 return output; -
trunk/lib/FlairVisionFilter/src/OpticalFlowSpeed.h
r143 r214 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.