Version: 9.16.0
ShapeRec_FeatureDetector.hxx
Go to the documentation of this file.
1// Copyright (C) 2007-2026 CEA, EDF, OPEN CASCADE
2//
3// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5//
6// This library is free software; you can redistribute it and/or
7// modify it under the terms of the GNU Lesser General Public
8// License as published by the Free Software Foundation; either
9// version 2.1 of the License, or (at your option) any later version.
10//
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14// Lesser General Public License for more details.
15//
16// You should have received a copy of the GNU Lesser General Public
17// License along with this library; if not, write to the Free Software
18// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19//
20// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21//
22
23// File : ShapeRec_FeatureDetector.h
24// Author : Renaud NEDELEC, Open CASCADE S.A.S.
25
26// OpenCV includes
27// RNV: Workaround: HAVE_TBB definition from OCCT conflicts with OPENCV, undef it.
28// This workaround will be removed after correction of the
29// https://tracker.dev.opencascade.org/view.php?id=28457 issue.
30#ifdef HAVE_TBB
31#undef HAVE_TBB
32#include <opencv2/opencv.hpp>
33#define HAVE_TBB
34#else
35#include <opencv2/opencv.hpp>
36#endif
37
38// Qt
39#include <QRect>
40
41#ifdef WIN32
42 #if defined GEOM_SHAPEREC_EXPORTS || defined GEOMShapeRec_EXPORTS
43 #define GEOM_SHAPEREC_EXPORT __declspec( dllexport )
44 #else
45 #define GEOM_SHAPEREC_EXPORT __declspec( dllimport )
46 #endif
47#else
48 #define GEOM_SHAPEREC_EXPORT
49#endif
50
52{
53public:
55 virtual ~ShapeRec_Parameters();
56
59};
60
62{
63public:
66
71 double epsilon;
72};
73
75{
76public:
79
81 int ratio;
83};
84
86{
87public:
90
94 double threshold;
96};
97
99{
100public:
101
102 typedef std::vector<cv::Point> CvContour;
103 typedef std::vector<std::vector<cv::Point> > CvContoursArray;
104
105 ShapeRec_FeatureDetector(); // Constructor
106
107 void SetPath( const std::string& ); // Sets the image path
108 void SetROI( const QRect& ); // Sets a Region Of Interest in the image
109 CvPoint2D32f* GetCorners() { return corners; };
110 CvContoursArray GetContours() { return contours; };
111 std::vector<cv::Vec4i> GetLines() { return lines; };
112 std::vector<cv::Vec4i> GetContoursHierarchy() { return hierarchy; };
113 int GetCornerCount() { return cornerCount; };
114 int GetImgHeight() { return imgHeight; };
115 int GetImgWidth() { return imgWidth; };
116
117 std::string CroppImage();
118 void ComputeCorners( bool useROI = false, ShapeRec_Parameters* parameters = 0 ); // Detects the corners from the image located at imagePath
119 bool ComputeLines(); // Detects the lines from the image located at imagePath
120 bool ComputeContours( bool useROI = false, ShapeRec_Parameters* parameters = 0 ); // Detects the contours from the image located at imagePath
121
122
123private:
124 std::string imagePath;
125
126 CvPoint2D32f* corners;
128
130 std::vector<cv::Vec4i> hierarchy;
131 std::vector<cv::Vec4i> lines;
134 CvRect rect;
135};
#define GEOM_SHAPEREC_EXPORT
Definition: ShapeRec_FeatureDetector.hxx:48
Parameters for the contour detection.
Definition: ShapeRec_FeatureDetector.hxx:75
int ratio
Definition: ShapeRec_FeatureDetector.hxx:81
bool L2gradient
Definition: ShapeRec_FeatureDetector.hxx:82
int lowThreshold
Definition: ShapeRec_FeatureDetector.hxx:80
Parameters for the contour detection.
Definition: ShapeRec_FeatureDetector.hxx:86
int histType
Definition: ShapeRec_FeatureDetector.hxx:93
double threshold
Definition: ShapeRec_FeatureDetector.hxx:94
double maxThreshold
Definition: ShapeRec_FeatureDetector.hxx:95
int * histSize
Definition: ShapeRec_FeatureDetector.hxx:92
int smoothSize
Definition: ShapeRec_FeatureDetector.hxx:91
Parameters for the corners detection.
Definition: ShapeRec_FeatureDetector.hxx:62
int typeCriteria
Definition: ShapeRec_FeatureDetector.hxx:69
double epsilon
Definition: ShapeRec_FeatureDetector.hxx:71
double minDistance
Definition: ShapeRec_FeatureDetector.hxx:68
int maxIter
Definition: ShapeRec_FeatureDetector.hxx:70
double qualityLevel
Definition: ShapeRec_FeatureDetector.hxx:67
Definition: ShapeRec_FeatureDetector.hxx:99
int cornerCount
Definition: ShapeRec_FeatureDetector.hxx:127
CvPoint2D32f * GetCorners()
Definition: ShapeRec_FeatureDetector.hxx:109
int GetImgWidth()
Definition: ShapeRec_FeatureDetector.hxx:115
int GetImgHeight()
Definition: ShapeRec_FeatureDetector.hxx:114
std::vector< cv::Vec4i > GetLines()
Definition: ShapeRec_FeatureDetector.hxx:111
std::vector< std::vector< cv::Point > > CvContoursArray
Definition: ShapeRec_FeatureDetector.hxx:103
int GetCornerCount()
Definition: ShapeRec_FeatureDetector.hxx:113
CvRect rect
Definition: ShapeRec_FeatureDetector.hxx:134
std::vector< cv::Vec4i > lines
Definition: ShapeRec_FeatureDetector.hxx:131
std::vector< cv::Vec4i > hierarchy
Definition: ShapeRec_FeatureDetector.hxx:130
std::string imagePath
Definition: ShapeRec_FeatureDetector.hxx:124
int imgWidth
Definition: ShapeRec_FeatureDetector.hxx:133
int imgHeight
Definition: ShapeRec_FeatureDetector.hxx:132
std::vector< cv::Vec4i > GetContoursHierarchy()
Definition: ShapeRec_FeatureDetector.hxx:112
CvContoursArray GetContours()
Definition: ShapeRec_FeatureDetector.hxx:110
CvContoursArray contours
Definition: ShapeRec_FeatureDetector.hxx:129
CvPoint2D32f * corners
Definition: ShapeRec_FeatureDetector.hxx:126
std::vector< cv::Point > CvContour
Definition: ShapeRec_FeatureDetector.hxx:102
Parameters for the contour/corners detection.
Definition: ShapeRec_FeatureDetector.hxx:52
int findContoursMethod
Definition: ShapeRec_FeatureDetector.hxx:58
int kernelSize
Definition: ShapeRec_FeatureDetector.hxx:57