IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
HoughLinesUtils.h
Go to the documentation of this file.
1 // HoughLinesUtils.h:
3 // ------------------------
4 //
14 
15 #ifndef __PYIPSDKIPLFEATUREDETECTION_HOUGHLINESUTILS_H__
16 #define __PYIPSDKIPLFEATUREDETECTION_HOUGHLINESUTILS_H__
17 
19 #include <IPSDKIPL/IPSDKIPLFeatureDetection/Processor/HoughLines2d/HoughLines2d.h>
20 #include <IPSDKIPL/IPSDKIPLFeatureDetection/Processor/HoughLinesGradient2d/HoughLinesGradient2d.h>
21 #include <boost/python/tuple.hpp>
22 
23 class ipsdk::imaproc::fd::HoughLines2dLvl1;
24 class ipsdk::imaproc::fd::HoughLinesGradient2dLvl1;
25 
26 namespace ipsdk {
27 namespace python {
28 
31 
36 PYIPSDKIPLFEATUREDETECTION_API boost::python::tuple
38 
39 PYIPSDKIPLFEATUREDETECTION_API boost::python::tuple
41  const ipsdk::image::ImageConstPtr& pInImg,
42  const ipsdk::imaproc::attr::HoughLinesImgParamsConstPtr& pHoughLinesImgParams,
43  const ipsdk::imaproc::attr::HoughLinesExtractionParamsConstPtr& pHoughLinesExtractionParams);
44 
45 PYIPSDKIPLFEATUREDETECTION_API boost::python::tuple
47 
48 PYIPSDKIPLFEATUREDETECTION_API boost::python::tuple
50  const ipsdk::image::ImageConstPtr& pInImg,
51  const ipsdk::imaproc::attr::HoughLinesImgParamsConstPtr& pHoughLinesImgParams,
52  const ipsdk::imaproc::attr::HoughLinesExtractionParamsConstPtr& pHoughLinesExtractionParams);
54 
59 PYIPSDKIPLFEATUREDETECTION_API boost::python::tuple
61  const ipsdk::image::ImageConstPtr& pInGyImg);
62 
63 PYIPSDKIPLFEATUREDETECTION_API boost::python::tuple
65  const image::ImageConstPtr& pInGyImg,
66  const ipsdk::imaproc::attr::HoughLinesGradientImgParamsConstPtr& pHoughLinesImgParams,
67  const ipsdk::imaproc::attr::HoughLinesExtractionParamsConstPtr& pHoughLinesExtractionParams,
68  const ipsdk::ipReal32 orientationTolerance);
69 
70 PYIPSDKIPLFEATUREDETECTION_API boost::python::tuple
72  const ipsdk::image::ImageConstPtr& pInGxImg,
73  const ipsdk::image::ImageConstPtr& pInGyImg);
74 
75 PYIPSDKIPLFEATUREDETECTION_API boost::python::tuple
77  const image::ImageConstPtr& pInGyImg,
78  const ipsdk::imaproc::attr::HoughLinesGradientImgParamsConstPtr& pHoughLinesImgParams,
79  const ipsdk::imaproc::attr::HoughLinesExtractionParamsConstPtr& pHoughLinesExtractionParams,
80  const ipsdk::ipReal32 orientationTolerance);
82 
85 PYIPSDKIPLFEATUREDETECTION_API boost::python::tuple
86 getAsyncProcessorOutput(boost::shared_ptr<ipsdk::imaproc::fd::HoughLines2dLvl1> pProcessor);
87 PYIPSDKIPLFEATUREDETECTION_API boost::python::tuple
88 getAsyncProcessorMultiSliceOutput(boost::shared_ptr<ipsdk::imaproc::fd::HoughLines2dLvl1> pProcessor);
89 PYIPSDKIPLFEATUREDETECTION_API boost::python::tuple
90 getAsyncProcessorOutput(boost::shared_ptr<ipsdk::imaproc::fd::HoughLinesGradient2dLvl1> pProcessor);
91 PYIPSDKIPLFEATUREDETECTION_API boost::python::tuple
92 getAsyncProcessorMultiSliceOutput(boost::shared_ptr<ipsdk::imaproc::fd::HoughLinesGradient2dLvl1> pProcessor);
94 
97 
98 } // end of namespace python
99 } // end of namespace ipsdk
100 
101 #endif // __PYIPSDKIPLFEATUREDETECTION_HOUGHLINESUTILS_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
PYIPSDKIPLFEATUREDETECTION_API boost::python::tuple multiSlice_houghLinesGradient2d(const ipsdk::image::ImageConstPtr &pInGxImg, const ipsdk::image::ImageConstPtr &pInGyImg)
wrapper function for Gaussian filter used to compute gradient on 2 gradient images (one along x-axis...
PYIPSDKIPLFEATUREDETECTION_API boost::python::tuple multiSlice_houghLines2d(const ipsdk::image::ImageConstPtr &pInImg)
wrapper function for Gaussian filter used to compute gradient on a 2d image
PYIPSDKIPLFEATUREDETECTION_API boost::python::tuple houghLinesGradient2d(const ipsdk::image::ImageConstPtr &pInGxImg, const ipsdk::image::ImageConstPtr &pInGyImg)
wrapper function for Gaussian filter used to compute gradient on 2 gradient images (one along x-axis...
boost::shared_ptr< const BaseImage > ImageConstPtr
Definition: ImageTypes.h:140
PYIPSDKIPLADVANCEDMORPHOLOGY_API boost::python::tuple getAsyncProcessorOutput(boost::shared_ptr< ipsdk::imaproc::advmorpho::RidgeLine2dImgLvl1 > pProcessor)
Wrapper to retrieve the result of an asynchronous processor.
PYIPSDKIPLFEATUREDETECTION_API boost::python::tuple getAsyncProcessorMultiSliceOutput(boost::shared_ptr< ipsdk::imaproc::fd::HoughLines2dLvl1 > pProcessor)
Wrapper to retrieve the result of an asynchronous processor.
PYIPSDKIPLFEATUREDETECTION_API boost::python::tuple houghLines2d(const ipsdk::image::ImageConstPtr &pInImg)
wrapper function for Gaussian filter used to compute gradient on a 2d image
#define PYIPSDKIPLFEATUREDETECTION_API
Import/Export macro for library PyIPSDKIPLFeatureDetection.
Definition: PyIPSDKIPLFeatureDetectionExports.h:25
Definition of import/export macro for library.
float ipReal32
Base types definition.
Definition: BaseTypes.h:56