Changeset 144 in flair-src for trunk/lib/FlairVisionFilter/src
- Timestamp:
- Feb 27, 2017, 10:59:54 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairVisionFilter/src/OpticalFlow.cpp
r122 r144 53 53 54 54 GroupBox* reglages_groupbox=new GroupBox(position,name); 55 56 55 rotation=new OneAxisRotation(reglages_groupbox->NewRow(),"post rotation"); 56 max_features=new SpinBox(reglages_groupbox->NewRow(),"max features:",1,65535,1,1); 57 57 58 58 output=new OpticalFlowData(parent,max_features->Value()); … … 85 85 unsigned int i; 86 86 87 if(max_features->ValueChanged()==true) 88 { 87 if(max_features->ValueChanged()==true) { 89 88 cvFree(&pointsA); 90 89 cvFree(&pointsB); … … 125 124 */ 126 125 //apply rotation 127 for(i=0;i<count;i++) 128 { 126 for(i=0;i<count;i++) { 129 127 Vector3D tmp; 130 128 tmp.x=pointsA[i].x;
Note:
See TracChangeset
for help on using the changeset viewer.