IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
Hessian2dImgTypes.h
Go to the documentation of this file.
1 // Hessian2dImgTypes.h:
3 // --------------------
4 //
14 
15 #ifndef __IPSDKIPLFILTERING_HESSIAN2DIMGTYPES_H__
16 #define __IPSDKIPLFILTERING_HESSIAN2DIMGTYPES_H__
17 
18 // suppression warnings
19 // warning C4251: 'ipsdk::imaproc::filter::HessianXYImg::_pHxxImg' : class 'boost::shared_ptr<ipsdk::image::BaseImage>' nécessite une interface DLL pour être utilisé(e) par les clients de struct 'ipsdk::imaproc::filter::HessianXYImg'
20 #pragma warning (push)
21 #pragma warning (disable : 4251)
22 
25 
26 namespace ipsdk {
27 namespace imaproc {
28 namespace filter {
29 
32 
37 {
40  HessianXYImg(const image::ImagePtr& pHxxImg,
41  const image::ImagePtr& pHxyImg,
42  const image::ImagePtr& pHyyImg) :
43  _pHxxImg(pHxxImg),
44  _pHxyImg(pHxyImg),
45  _pHyyImg(pHyyImg) {}
46  ~HessianXYImg() {}
48 
51 
54 
57 };
58 
61 
62 } // end of namespace filter
63 } // end of namespace imaproc
64 } // end of namespace ipsdk
65 
66 #pragma warning (pop)
67 
68 #endif // __IPSDKIPLFILTERING_HESSIAN2DIMGTYPES_H__
image::ImagePtr _pHyyImg
Y-Y Hessian image.
Definition: Hessian2dImgTypes.h:56
boost::shared_ptr< BaseImage > ImagePtr
image::ImagePtr _pHxyImg
X-Y Hessian image.
Definition: Hessian2dImgTypes.h:53
image::ImagePtr _pHxxImg
X-X Hessian image.
Definition: Hessian2dImgTypes.h:50
Structure allowing to encaspulate x-x, x-y and y-y images associated to the result of a 2d Hessian co...
Definition: Hessian2dImgTypes.h:36
#define IPSDKIPLFILTERING_API
Import/Export macro for library IPSDKIPLFiltering.
Definition: IPSDKIPLFilteringExports.h:25
Definition of import/export macro for library.