5 #include <visp3/core/vpConfig.h>
6 #include <visp3/core/vpImage.h>
7 #include <visp3/gui/vpDisplayFactory.h>
8 #include <visp3/io/vpImageIo.h>
10 #if defined(VISP_HAVE_MODULE_IMGPROC) && defined(VISP_HAVE_DISPLAY)
12 #include <visp3/imgproc/vpImgproc.h>
15 #ifdef ENABLE_VISP_NAMESPACE
24 std::cout <<
"\nContour:" << std::endl;
25 std::cout <<
"\tlevel: " << level << std::endl;
28 std::cout <<
"\tcontour size: " << contour.
m_points.size() << std::endl;
29 std::cout <<
"\tnb children: " << contour.
m_children.size() << std::endl;
31 for (std::vector<VISP_NAMESPACE_NAME::vpContour *>::const_iterator it = contour.
m_children.begin(); it != contour.
m_children.end();
33 displayContourInfo(**it, level + 1);
41 std::vector<std::vector<vpImagePoint> > contours;
42 contours.push_back(contour.
m_points);
45 for (std::vector<VISP_NAMESPACE_NAME::vpContour *>::const_iterator it = contour.
m_children.begin(); it != contour.
m_children.end();
47 drawContoursTree(I, **it);
54 int main(
int argc,
const char **argv)
57 #if defined(VISP_HAVE_MODULE_IMGPROC) && defined(VISP_HAVE_DISPLAY)
60 std::string input_filename =
"grid36-03.pgm";
61 bool white_foreground =
false;
64 for (
int i = 1; i < argc; i++) {
65 if (std::string(argv[i]) ==
"--input" && i + 1 < argc) {
66 input_filename = std::string(argv[i + 1]);
68 else if (std::string(argv[i]) ==
"--white_foreground") {
69 white_foreground =
true;
71 else if (std::string(argv[i]) ==
"--method" && i + 1 < argc) {
74 else if (std::string(argv[i]) ==
"--help" || std::string(argv[i]) ==
"-h") {
75 std::cout <<
"Usage: " << argv[0]
76 <<
" [--input <input image>] [--method <0: "
77 "CONTOUR_RETR_TREE, 1: CONTOUR_RETR_LIST, 2: "
78 "CONTOUR_RETR_EXTERNAL>]"
79 " [--white_foreground] [--help]"
93 #if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
104 for (
unsigned int i = 0; i < I_bin.getSize(); i++) {
105 I_bin.bitmap[i] = 255 * I.
bitmap[i];
110 std::vector<std::vector<vpImagePoint> > contours;
125 I_draw_contours =
vpRGBa(0);
127 drawContoursTree(I_draw_contours, vp_contours);
129 displayContourInfo(vp_contours, 0);
140 #if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11) && defined(VISP_HAVE_DISPLAY)
141 if (display !=
nullptr) {
145 if (display2 !=
nullptr) {
static const vpColor green
Class that defines generic functionalities for display.
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
static void display(const vpImage< unsigned char > &I)
static void flush(const vpImage< unsigned char > &I)
static void displayText(const vpImage< unsigned char > &I, const vpImagePoint &ip, const std::string &s, const vpColor &color)
static void read(vpImage< unsigned char > &I, const std::string &filename, int backend=IO_DEFAULT_BACKEND)
unsigned int getWidth() const
Type * bitmap
points toward the bitmap
unsigned int getHeight() const
VISP_EXPORT void findContours(const VISP_NAMESPACE_ADDRESSING vpImage< unsigned char > &I_original, vpContour &contours, std::vector< std::vector< VISP_NAMESPACE_ADDRESSING vpImagePoint > > &contourPts, const vpContourRetrievalType &retrievalMode=CONTOUR_RETR_TREE)
VISP_EXPORT void drawContours(VISP_NAMESPACE_ADDRESSING vpImage< unsigned char > &I, const std::vector< std::vector< VISP_NAMESPACE_ADDRESSING vpImagePoint > > &contours, unsigned char grayValue=255)
VISP_EXPORT unsigned char autoThreshold(VISP_NAMESPACE_ADDRESSING vpImage< unsigned char > &I, const vpAutoThresholdMethod &method, const unsigned char backgroundValue=0, const unsigned char foregroundValue=255)
std::shared_ptr< vpDisplay > createDisplay()
Return a smart pointer vpDisplay specialization if a GUI library is available or nullptr otherwise.
vpDisplay * allocateDisplay()
Return a newly allocated vpDisplay specialization if a GUI library is available or nullptr otherwise.
std::vector< vpContour * > m_children
Children contour.
std::vector< VISP_NAMESPACE_ADDRESSING vpImagePoint > m_points
Vector of points belonging to the contour.
vpContourType m_contourType
Contour type.