IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
HoughCirclesPhaseCoded2dImgTypes.h
Go to the documentation of this file.
1 // HoughCirclesPhaseCoded2dImgTypes.h:
3 // -----------------------------------
4 //
14 
15 #ifndef __IPSDKIPLFEATUREDETECTION_HOUGHCIRCLESPHASECODED2DIMGTYPES_H__
16 #define __IPSDKIPLFEATUREDETECTION_HOUGHCIRCLESPHASECODED2DIMGTYPES_H__
17 
18 // suppression warnings
19 // warning C4251: 'ipsdk::imaproc::fd::HoughCirclesComplexImg::_pRealImg' : class 'boost::shared_ptr<ipsdk::image::BaseImage>' needs to have dll-interface to be used by clients of struct 'ipsdk::imaproc::fd::HoughCirclesComplexImg'
20 #pragma warning (push)
21 #pragma warning (disable : 4251)
22 
25 
26 namespace ipsdk {
27 namespace imaproc {
28 namespace fd {
29 
32 
37 {
41  const image::ImagePtr& pImImg) :
42  _pRealImg(pRealImg),
43  _pImImg(pImImg) {}
46 
49 
52 };
53 
56 
57 } // end of namespace fd
58 } // end of namespace imaproc
59 } // end of namespace ipsdk
60 
61 #pragma warning (pop)
62 
63 #endif // __IPSDKIPLFEATUREDETECTION_HOUGHCIRCLESPHASECODED2DIMGTYPES_H__
boost::shared_ptr< BaseImage > ImagePtr
Definition of import/export macro for library.
image::ImagePtr _pImImg
imaginary image
Definition: HoughCirclesPhaseCoded2dImgTypes.h:51
Structure allowing to encaspulate real and imaginary part images associated to the result of a hough ...
Definition: HoughCirclesPhaseCoded2dImgTypes.h:36
#define IPSDKIPLFEATUREDETECTION_API
Import/Export macro for library IPSDKIPLFeatureDetection.
Definition: IPSDKIPLFeatureDetectionExports.h:25
image::ImagePtr _pRealImg
real image
Definition: HoughCirclesPhaseCoded2dImgTypes.h:48