Fawkes API
Fawkes Development Version
|
Omni vision relative position model. More...
#include <>>
Public Member Functions | |
OmniRelative (MirrorModel *mirror_model) | |
Constructor. More... | |
virtual const char * | get_name () const |
Get name of relative position model. More... | |
virtual void | set_radius (float r) |
Set radius of a found circle. More... | |
virtual void | set_center (float x, float y) |
Set center of a found circle. More... | |
virtual void | set_center (const center_in_roi_t &c) |
Set center of a found circle. More... | |
virtual void | set_pan_tilt (float pan=0.0f, float tilt=0.0f) |
Set camera pan and tilt. More... | |
virtual void | get_pan_tilt (float *pan, float *tilt) const |
Get camera pan tilt. More... | |
virtual float | get_distance () const |
Get distance to object. More... | |
virtual float | get_x () const |
Get relative X coordinate of object. More... | |
virtual float | get_y () const |
Get relative Y coordinate of object. More... | |
virtual float | get_bearing () const |
Get bearing (horizontal angle) to object. More... | |
virtual float | get_slope () const |
Get slope (vertical angle) to object. More... | |
virtual float | get_radius () const |
Get radius. More... | |
virtual void | calc () |
Calculate position data. More... | |
virtual void | calc_unfiltered () |
Calculate data unfiltered. More... | |
virtual void | reset () |
Reset all data. More... | |
virtual bool | is_pos_valid () const |
Check if position is valid. More... | |
![]() | |
virtual | ~RelativePositionModel () |
Destructor. More... | |
virtual void | set_cam_rotation (float pan, float tilt, float roll=0.f) |
Sets the camera orientation. More... | |
virtual void | get_cam_rotation (float &pan, float &tilt, float &roll) const |
Returns the camera orientation. More... | |
virtual void | set_cam_translation (float height, float rel_x=0.f, float rel_y=0.f) |
Sets the current translation of the camera. More... | |
virtual void | get_cam_translation (float &height, float &rel_x, float &rel_y) const |
Returns the current translation of the camera. More... | |
Omni vision relative position model.
Definition at line 40 of file omni_relative.h.
firevision::OmniRelative::OmniRelative | ( | MirrorModel * | mirror_model | ) |
|
virtual |
Calculate position data.
Call this method if all relevant data (set(Radius|Center|PanTilt)) has been set, after this valid data can be retrieved via get*
Implements firevision::RelativePositionModel.
Definition at line 167 of file omni_relative.cpp.
References firevision::MirrorModel::getWorldPointRelative(), firevision::MirrorModel::isValidPoint(), fawkes::polar_coord_2d_t::phi, and fawkes::polar_coord_2d_t::r.
|
virtual |
Calculate data unfiltered.
Same as calc(), but without any filtering (i.e. no Kalman filter).
Implements firevision::RelativePositionModel.
Definition at line 195 of file omni_relative.cpp.
References firevision::MirrorModel::getWorldPointRelative(), fawkes::polar_coord_2d_t::phi, and fawkes::polar_coord_2d_t::r.
|
virtual |
Get bearing (horizontal angle) to object.
Implements firevision::RelativePositionModel.
Definition at line 82 of file omni_relative.cpp.
|
virtual |
Get distance to object.
Implements firevision::RelativePositionModel.
Definition at line 75 of file omni_relative.cpp.
|
virtual |
Get name of relative position model.
Implements firevision::RelativePositionModel.
Definition at line 152 of file omni_relative.cpp.
|
virtual |
Get camera pan tilt.
pan | contains pan value (rad) upon return |
tilt | contains tilt value (rad) upon return |
Implements firevision::RelativePositionModel.
Definition at line 146 of file omni_relative.cpp.
|
virtual |
|
virtual |
Get slope (vertical angle) to object.
Implements firevision::RelativePositionModel.
Definition at line 89 of file omni_relative.cpp.
|
virtual |
Get relative X coordinate of object.
Implements firevision::RelativePositionModel.
Definition at line 103 of file omni_relative.cpp.
|
virtual |
Get relative Y coordinate of object.
Implements firevision::RelativePositionModel.
Definition at line 96 of file omni_relative.cpp.
|
virtual |
Check if position is valid.
Implements firevision::RelativePositionModel.
Definition at line 188 of file omni_relative.cpp.
References firevision::MirrorModel::isValidPoint().
|
virtual |
Reset all data.
This must be called if the object is not visible.
Implements firevision::RelativePositionModel.
Definition at line 159 of file omni_relative.cpp.
|
virtual |
Set center of a found circle.
This is especially used for ball position implementations.
x | x position in image (pixels) |
y | y position in image (pixels) |
Implements firevision::RelativePositionModel.
Definition at line 110 of file omni_relative.cpp.
|
virtual |
Set center of a found circle.
This is especially used for ball position implementations.
c | center |
Implements firevision::RelativePositionModel.
Definition at line 118 of file omni_relative.cpp.
|
virtual |
Set camera pan and tilt.
pan | pan value (rad) |
tilt | tilt value (rad) |
Implements firevision::RelativePositionModel.
Definition at line 140 of file omni_relative.cpp.
|
virtual |
Set radius of a found circle.
This is especially used for ball position implementations.
r | radius |
Implements firevision::RelativePositionModel.
Definition at line 124 of file omni_relative.cpp.