Changeset 214 in flair-src for trunk/lib/FlairFilter/src/unexported
- Timestamp:
- 02/07/18 17:49:27 (4 years ago)
- Location:
- trunk/lib/FlairFilter/src/unexported
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairFilter/src/unexported/ButterworthLowPass_impl.h
r162 r214 19 19 namespace flair { 20 20 namespace core { 21 class cvmatrix;21 class Matrix; 22 22 } 23 23 namespace gui { … … 120 120 class ButterworthLowPass_impl { 121 121 public: 122 ButterworthLowPass_impl( flair::filter::ButterworthLowPass *self,122 ButterworthLowPass_impl(const flair::filter::ButterworthLowPass *self, 123 123 const flair::gui::LayoutPosition *position, 124 124 std::string name, uint32_t order,uint32_t nbRow,uint32_t nbCol); 125 125 ~ButterworthLowPass_impl(); 126 126 void UpdateFrom(const flair::core::io_data *data); 127 flair::core:: cvmatrix *output;127 flair::core::Matrix *output; 128 128 129 129 private: … … 135 135 uint32_t order; 136 136 uint32_t nbRow, nbCol; 137 const flair::filter::ButterworthLowPass *self; 137 138 }; 138 139 -
trunk/lib/FlairFilter/src/unexported/EulerDerivative_impl.h
r15 r214 18 18 namespace flair { 19 19 namespace core { 20 class cvmatrix;20 class Matrix; 21 21 } 22 22 namespace gui { … … 38 38 const flair::gui::LayoutPosition *position, 39 39 std::string name, 40 const flair::core:: cvmatrix *init_value = NULL);40 const flair::core::Matrix *init_value = NULL); 41 41 ~EulerDerivative_impl(); 42 42 void UpdateFrom(const flair::core::io_data *data); 43 flair::core:: cvmatrix *output;43 flair::core::Matrix *output; 44 44 45 45 private: … … 47 47 flair::core::Time previous_time; 48 48 bool first_update; 49 flair::core::cvmatrix *prev_value; 49 flair::core::Matrix *prev_value; 50 flair::filter::EulerDerivative *self; 50 51 }; 51 52 -
trunk/lib/FlairFilter/src/unexported/JoyReference_impl.h
r15 r214 25 25 namespace flair { 26 26 namespace core { 27 class cvmatrix;27 class Matrix; 28 28 class io_data; 29 29 class AhrsData; … … 65 65 void Update(flair::core::Time time); 66 66 void UpdateFrom(const flair::core::io_data *data); 67 flair::core:: cvmatrix *output;67 flair::core::Matrix *output; 68 68 flair::core::AhrsData *ahrsData; 69 69 70 70 private: 71 flair::core:: cvmatrix *input;71 flair::core::Matrix *input; 72 72 73 73 flair::gui::GroupBox *reglages_groupbox; -
trunk/lib/FlairFilter/src/unexported/LowPassFilter_impl.h
r147 r214 18 18 namespace flair { 19 19 namespace core { 20 class cvmatrix;20 class Matrix; 21 21 } 22 22 namespace gui { … … 36 36 const flair::gui::LayoutPosition *position, 37 37 std::string name, 38 const flair::core:: cvmatrix *init_value = NULL);38 const flair::core::Matrix *init_value = NULL); 39 39 ~LowPassFilter_impl(); 40 40 void UpdateFrom(const flair::core::io_data *data); 41 flair::core:: cvmatrix *output;41 flair::core::Matrix *output; 42 42 43 43 private: 44 44 flair::core::Time previous_time; 45 45 flair::gui::DoubleSpinBox *freq, *T; 46 const flair::filter::LowPassFilter *self; 46 47 }; 47 48 -
trunk/lib/FlairFilter/src/unexported/PidThrust_impl.h
r15 r214 18 18 namespace flair { 19 19 namespace core { 20 class cvmatrix;20 class Matrix; 21 21 class io_data; 22 22 } … … 50 50 51 51 // matrix 52 flair::core:: cvmatrix *state;52 flair::core::Matrix *state; 53 53 54 54 flair::gui::DoubleSpinBox *T, *kp, *ki, *kd, *sat, *sati; -
trunk/lib/FlairFilter/src/unexported/Pid_impl.h
r15 r214 18 18 namespace flair { 19 19 namespace core { 20 class cvmatrix;20 class Matrix; 21 21 class io_data; 22 22 } … … 49 49 50 50 // matrix 51 flair::core:: cvmatrix *state;51 flair::core::Matrix *state; 52 52 53 53 flair::gui::DoubleSpinBox *T, *kp, *ki, *kd, *sat, *sati; -
trunk/lib/FlairFilter/src/unexported/TrajectoryGenerator1D_impl.h
r205 r214 16 16 namespace flair { 17 17 namespace core { 18 class cvmatrix;18 class Matrix; 19 19 } 20 20 namespace gui { … … 39 39 void Reset(void); 40 40 float GetPercentageOfCompletion(void) const; 41 flair::core:: cvmatrix *output;41 flair::core::Matrix *output; 42 42 float pos_off, vel_off; 43 43 bool is_finished, is_started; -
trunk/lib/FlairFilter/src/unexported/TrajectoryGenerator2DCircle_impl.h
r167 r214 19 19 namespace flair { 20 20 namespace core { 21 class cvmatrix;21 class Matrix; 22 22 class io_data; 23 23 } … … 46 46 void FinishTraj(void); 47 47 bool is_running; 48 flair::core:: cvmatrix *output;48 flair::core::Matrix *output; 49 49 flair::core::Vector2Df pos_off, vel_off; 50 50 -
trunk/lib/FlairFilter/src/unexported/UavMultiplex_impl.h
r137 r214 20 20 namespace core { 21 21 class FrameworkManager; 22 class cvmatrix;22 class Matrix; 23 23 class io_data; 24 24 } … … 56 56 ~UavMultiplex_impl(); 57 57 58 flair::core:: cvmatrix *input;58 flair::core::Matrix *input; 59 59 void SetMultiplexComboBox(std::string name, int index); 60 60 int MultiplexValue(int index) const; -
trunk/lib/FlairFilter/src/unexported/X4X8Multiplex_impl.h
r15 r214 18 18 namespace flair { 19 19 namespace core { 20 class cvmatrix;20 class Matrix; 21 21 class io_data; 22 22 } … … 44 44 45 45 private: 46 flair::core:: cvmatrix *output;46 flair::core::Matrix *output; 47 47 flair::gui::ComboBox *pas; 48 48 flair::gui::DataPlot1D *plots[4];
Note:
See TracChangeset
for help on using the changeset viewer.