Visual Servoing Platform  version 3.4.0

#include <vpDetectorBase.h>

+ Inheritance diagram for vpDetectorBase:

Public Member Functions

 vpDetectorBase ()
 
 vpDetectorBase (const vpDetectorBase &o)
 
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)
 
void setTimeout (unsigned long timeout_ms)
 

Protected Attributes

std::vector< std::vector< vpImagePoint > > m_polygon
 
std::vector< std::string > m_message
 
size_t m_nb_objects
 
unsigned long m_timeout_ms
 

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.

vpDetectorBase::vpDetectorBase ( const vpDetectorBase o)

Definition at line 47 of file vpDetectorBase.cpp.

virtual vpDetectorBase::~vpDetectorBase ( )
inlinevirtual

Default destructor.

Definition at line 81 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, and vpDetectorDNN.

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

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

vpRect vpDetectorBase::getBBox ( size_t  i) const

Return the bounding box of the ith object.

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

Definition at line 92 of file vpDetectorBase.cpp.

References m_polygon.

vpImagePoint vpDetectorBase::getCog ( size_t  i) const

Return the center of gravity location of the ith object.

Examples:
mbot-apriltag-2D-half-vs.cpp, mbot-apriltag-ibvs.cpp, servoBebop2.cpp, servoFlirPtuIBVS.cpp, servoFrankaPBVS.cpp, and tutorial-flir-ptu-ibvs.cpp.

Definition at line 79 of file vpDetectorBase.cpp.

References m_polygon.

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

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

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

Definition at line 106 of file vpDetectorBase.h.

std::string & vpDetectorBase::getMessage ( size_t  i)

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

Definition at line 67 of file vpDetectorBase.cpp.

References vpException::badValue, m_message, and m_polygon.

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

Returns ith object container box as a vector of points.

Definition at line 55 of file vpDetectorBase.cpp.

References vpException::badValue, and m_polygon.

void vpDetectorBase::setTimeout ( unsigned long  timeout_ms)
inline

Set detector timeout in milli-seconds. When set to 0, there is no timeout.

Definition at line 129 of file vpDetectorBase.h.

Referenced by vpDetectorDataMatrixCode::vpDetectorDataMatrixCode().

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
unsigned long vpDetectorBase::m_timeout_ms
protected

Detection timeout.

Definition at line 70 of file vpDetectorBase.h.

Referenced by vpDetectorDataMatrixCode::detect().