Version: 8.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
ShapeRec_FeatureDetector.hxx
Go to the documentation of this file.
1 // Copyright (C) 2007-2016 CEA/DEN, EDF R&D, 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 #include <cv.h>
28 #include <highgui.h>
29 #include <opencv2/imgproc/imgproc.hpp>
30 #include <opencv2/highgui/highgui.hpp>
31 
32 // Qt
33 #include <QRect>
34 
35 #ifdef WIN32
36  #if defined GEOM_SHAPEREC_EXPORTS || defined GEOMShapeRec_EXPORTS
37  #define GEOM_SHAPEREC_EXPORT __declspec( dllexport )
38  #else
39  #define GEOM_SHAPEREC_EXPORT __declspec( dllimport )
40  #endif
41 #else
42  #define GEOM_SHAPEREC_EXPORT
43 #endif
44 
46 {
47 public:
49  virtual ~ShapeRec_Parameters();
50 
53 };
54 
56 {
57 public:
59  virtual ~ShapeRec_CornersParameters();
60 
61  double qualityLevel;
62  double minDistance;
64  int maxIter;
65  double epsilon;
66 };
67 
69 {
70 public:
72  virtual ~ShapeRec_CannyParameters();
73 
75  int ratio;
76  bool L2gradient;
77 };
78 
80 {
81 public:
84 
86  int* histSize;
87  int histType;
88  double threshold;
89  double maxThreshold;
90 };
91 
93 {
94 public:
95 
96  typedef std::vector<cv::Point> CvContour;
97  typedef std::vector<std::vector<cv::Point> > CvContoursArray;
98 
99  ShapeRec_FeatureDetector(); // Constructor
100 
101  void SetPath( const std::string& ); // Sets the image path
102  void SetROI( const QRect& ); // Sets a Region Of Interest in the image
103  CvPoint2D32f* GetCorners() { return corners; };
104  CvContoursArray GetContours() { return contours; };
105  std::vector<cv::Vec4i> GetLines() { return lines; };
106  std::vector<cv::Vec4i> GetContoursHierarchy() { return hierarchy; };
107  int GetCornerCount() { return cornerCount; };
108  int GetImgHeight() { return imgHeight; };
109  int GetImgWidth() { return imgWidth; };
110 
111  std::string CroppImage();
112  void ComputeCorners( bool useROI = false, ShapeRec_Parameters* parameters = 0 ); // Detects the corners from the image located at imagePath
113  bool ComputeLines(); // Detects the lines from the image located at imagePath
114  bool ComputeContours( bool useROI = false, ShapeRec_Parameters* parameters = 0 ); // Detects the contours from the image located at imagePath
115 
116 
117 private:
118  std::string imagePath;
119 
120  CvPoint2D32f* corners;
122 
124  std::vector<cv::Vec4i> hierarchy;
125  std::vector<cv::Vec4i> lines;
127  int imgWidth;
128  CvRect rect;
129 };