![]() |
Visual Servoing Platform
version 3.6.0 under development (2023-09-29)
|
#include <visp3/imgproc/vpContours.h>
Public Member Functions | |
vpContour () | |
vpContour (const vpContourType &type) | |
vpContour (const vpContour &contour) | |
virtual | ~vpContour () |
vpContour & | operator= (const vpContour &other) |
void | setParent (vpContour *parent) |
Public Attributes | |
std::vector< vpContour * > | m_children |
vpContourType | m_contourType |
vpContour * | m_parent |
std::vector< vpImagePoint > | m_points |
Structure associated to a contour.
Definition at line 207 of file vpContours.h.
|
inline |
Default constructor.
Definition at line 221 of file vpContours.h.
Referenced by operator=(), and vpContour().
|
inline |
Constructor of a given contour type.
Definition at line 226 of file vpContours.h.
|
inline |
Copy constructor.
Definition at line 231 of file vpContours.h.
References m_children, m_parent, and vpContour().
|
inlinevirtual |
Copy operator.
Definition at line 261 of file vpContours.h.
References m_children, m_contourType, m_parent, and vpContour().
|
inline |
Set parent contour.
Definition at line 294 of file vpContours.h.
References m_children, and m_parent.
Referenced by vp::findContours().
std::vector<vpContour *> vp::vpContour::m_children |
Children contour.
Definition at line 210 of file vpContours.h.
Referenced by vp::findContours(), operator=(), setParent(), vpContour(), and ~vpContour().
vpContourType vp::vpContour::m_contourType |
Contour type.
Definition at line 212 of file vpContours.h.
Referenced by vp::findContours(), and operator=().
vpContour* vp::vpContour::m_parent |
Parent contour.
Definition at line 214 of file vpContours.h.
Referenced by vp::findContours(), operator=(), setParent(), and vpContour().
std::vector<vpImagePoint> vp::vpContour::m_points |
Vector of points belonging to the contour.
Definition at line 216 of file vpContours.h.
Referenced by vp::findContours().