Changeset 82 in flair-dev
- Timestamp:
- Nov 30, 2018, 5:00:20 PM (6 years ago)
- Location:
- trunk/include/FlairVisionFilter
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/FlairVisionFilter/OpticalFlowSpeed.h
r68 r82 19 19 class Matrix; 20 20 } 21 namespace gui { 22 class LayoutPosition; 23 class SpinBox; 24 class DoubleSpinBox; 25 class CheckBox; 26 } 21 27 } 22 28 … … 31 37 * \brief Optical flow speed calculation 32 38 * 33 * Speed is the mean of all optical flow values divided by the delta time between images.39 * Speed is the mean of all optical flow values. 34 40 */ 35 41 class OpticalFlowSpeed : public core::IODevice … … 44 50 * \param name name 45 51 */ 46 OpticalFlowSpeed(const core::IODevice* parent, std::string name);52 OpticalFlowSpeed(const core::IODevice* parent, const gui::LayoutPosition* position,std::string name); 47 53 48 54 /*! … … 67 73 * \brief Output matrix 68 74 * 69 * Matrix is of s ize (2,1). \n75 * Matrix is of sze (2,1). \n 70 76 * First line is speed along x axis. \n 71 77 * Second line is speed along y axis. \n … … 84 90 85 91 core::Matrix *output; 86 }; 92 gui::DoubleSpinBox *quality; 93 gui::CheckBox *weightedAverage; 94 gui::CheckBox *timeMultiplication; 95 }; 96 87 97 } // end namespace filter 88 98 } // end namespace flair
Note:
See TracChangeset
for help on using the changeset viewer.