ViSP
2.10.0
|
#include <vpDetectorBase.h>
Public Member Functions | |
vpDetectorBase () | |
virtual | ~vpDetectorBase () |
virtual bool | detect (const vpImage< unsigned char > &I)=0 |
std::vector< std::vector< vpImagePoint > > & | getPolygon () |
std::vector< vpImagePoint > & | getPolygon (size_t i) |
std::string & | getMessage (size_t i) |
std::vector< std::string > & | getMessage () |
size_t | getNbObjects () const |
vpImagePoint | getCog (size_t i) const |
vpRect | getBBox (size_t i) const |
Protected Attributes | |
std::vector< std::vector< vpImagePoint > > | m_polygon |
std::vector< std::string > | m_message |
size_t | m_nb_objects |
Base class for object detection.
This class is a generic class that can be used to detect:
Definition at line 64 of file vpDetectorBase.h.
|
inline |
Default constructor.
Definition at line 75 of file vpDetectorBase.h.
|
inlinevirtual |
Default destructor.
Definition at line 79 of file vpDetectorBase.h.
|
pure virtual |
Detect objects in an image.
I | : Image where to detect objects. |
Implemented in vpDetectorQRCode, vpDetectorDataMatrixCode, and vpDetectorFace.
|
inline |
Return the bounding box of the ith object.
Definition at line 141 of file vpDetectorBase.h.
|
inline |
Return the center of gravity location of the ith object.
Definition at line 129 of file vpDetectorBase.h.
|
inline |
Returns the contained message of the ith object if there is one.
Definition at line 108 of file vpDetectorBase.h.
References vpException::badValue.
|
inline |
Returns the contained message of the ith object if there is one.
Definition at line 118 of file vpDetectorBase.h.
|
inline |
Return the number of objects that are detected.
Definition at line 125 of file vpDetectorBase.h.
|
inline |
Returns object container box as a vector of points.
Definition at line 90 of file vpDetectorBase.h.
|
inline |
Returns ith object container box as a vector of points.
Definition at line 98 of file vpDetectorBase.h.
References vpException::badValue.
|
protected |
Message attached to each object.
Definition at line 68 of file vpDetectorBase.h.
Referenced by vpDetectorFace::detect(), vpDetectorDataMatrixCode::detect(), and vpDetectorQRCode::detect().
|
protected |
Number of detected objects.
Definition at line 69 of file vpDetectorBase.h.
Referenced by vpDetectorFace::detect(), vpDetectorDataMatrixCode::detect(), and vpDetectorQRCode::detect().
|
protected |
For each object, defines the polygon that contains the object.
Definition at line 67 of file vpDetectorBase.h.
Referenced by vpDetectorFace::detect(), vpDetectorDataMatrixCode::detect(), and vpDetectorQRCode::detect().