|
Fawkes API
Fawkes Development Version
|
#include <>>

Public Member Functions | |
| virtual | ~Shape () |
| Virtual empty destructor. | |
| virtual void | setMargin (unsigned int margin)=0 |
| Set margin around shape. | |
| virtual bool | isClose (unsigned int in_roi_x, unsigned int in_roi_y)=0 |
| Check if the given point is close to the shape. | |
Shape interface.
Generic API for accessing using shapes.
| firevision::Shape::~Shape | ( | ) | [virtual] |
Virtual empty destructor.
Definition at line 49 of file shapemodel.cpp.
| bool firevision::Shape::isClose | ( | unsigned int | in_roi_x, |
| unsigned int | in_roi_y | ||
| ) | [pure virtual] |
Check if the given point is close to the shape.
| in_roi_x | x coordinate of point in the same ROI as the shape |
| in_roi_y | y coordinate of point in the same ROI as the shape |
Implemented in firevision::Circle, and firevision::LineShape.
Referenced by firevision::FilterShapeRemover::apply().
| void firevision::Shape::setMargin | ( | unsigned int | margin | ) | [pure virtual] |
Set margin around shape.
| margin | margin |
Implemented in firevision::Circle, and firevision::LineShape.
Referenced by firevision::FilterShapeRemover::apply().