Visual Servoing Platform  version 3.2.0 under development (2019-01-22)

#include <visp3/detection/vpDetectorBase.h>

+ Inheritance diagram for vpDetectorBase:

Public Member Functions

 vpDetectorBase ()
 
virtual ~vpDetectorBase ()
 
virtual bool detect (const vpImage< unsigned char > &I)=0
 
Inherited functionalities from vpDetectorBase
vpRect getBBox (size_t i) const
 
vpImagePoint getCog (size_t i) const
 
std::vector< std::string > & getMessage ()
 
std::string & getMessage (size_t i)
 
size_t getNbObjects () const
 
std::vector< std::vector< vpImagePoint > > & getPolygon ()
 
std::vector< vpImagePoint > & getPolygon (size_t i)
 

Protected Attributes

std::vector< std::vector< vpImagePoint > > m_polygon
 
std::vector< std::string > m_message
 
size_t m_nb_objects
 

Detailed Description

Base class for object detection.

This class is a generic class that can be used to detect:

Examples:
testAprilTag.cpp, tutorial-barcode-detector-live.cpp, and tutorial-barcode-detector.cpp.

Definition at line 64 of file vpDetectorBase.h.

Constructor & Destructor Documentation

vpDetectorBase::vpDetectorBase ( )

Default constructor.

Definition at line 45 of file vpDetectorBase.cpp.

virtual vpDetectorBase::~vpDetectorBase ( )
inlinevirtual

Default destructor.

Definition at line 82 of file vpDetectorBase.h.

Member Function Documentation

virtual bool vpDetectorBase::detect ( const vpImage< unsigned char > &  I)
pure virtual

Detect objects in an image.

Parameters
I: Image where to detect objects.
Returns
true if one or multiple objects are detected, false otherwise.

Implemented in vpDetectorAprilTag, vpDetectorQRCode, vpDetectorDataMatrixCode, vpDetectorFace, and vpDetectorDNN.

Examples:
tutorial-barcode-detector-live.cpp, and tutorial-barcode-detector.cpp.

Referenced by vpDetectorDataMatrixCode::~vpDetectorDataMatrixCode(), vpDetectorFace::~vpDetectorFace(), and vpDetectorQRCode::~vpDetectorQRCode().

vpImagePoint vpDetectorBase::getCog ( size_t  i) const

Return the center of gravity location of the ith object.

Examples:
mbot-apriltag-2D-half-vs.cpp, and mbot-apriltag-ibvs.cpp.

Definition at line 74 of file vpDetectorBase.cpp.

References m_polygon.

std::vector<std::string>& vpDetectorBase::getMessage ( void  )
inline
std::string & vpDetectorBase::getMessage ( size_t  i)

Returns the contained message of the ith object if there is one.

Definition at line 62 of file vpDetectorBase.cpp.

References vpException::badValue, m_message, and m_polygon.

std::vector<std::vector<vpImagePoint> >& vpDetectorBase::getPolygon ( )
inline
std::vector< vpImagePoint > & vpDetectorBase::getPolygon ( size_t  i)

Returns ith object container box as a vector of points.

Definition at line 50 of file vpDetectorBase.cpp.

References vpException::badValue, and m_polygon.

Member Data Documentation

std::vector<std::string> vpDetectorBase::m_message
protected
size_t vpDetectorBase::m_nb_objects
protected
std::vector<std::vector<vpImagePoint> > vpDetectorBase::m_polygon
protected

For each object, defines the polygon that contains the object.

Definition at line 67 of file vpDetectorBase.h.

Referenced by vpDetectorDNN::detect(), vpDetectorFace::detect(), vpDetectorDataMatrixCode::detect(), vpDetectorQRCode::detect(), vpDetectorAprilTag::detect(), getBBox(), getCog(), getMessage(), and getPolygon().