IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
Gradient2dImgTypes.h
Go to the documentation of this file.
1 // Gradient2dImgTypes.h:
3 // -----------------------------
4 //
14 
15 #ifndef __IPSDKIPLFILTERING_GRADIENT2DIMGTYPES_H__
16 #define __IPSDKIPLFILTERING_GRADIENT2DIMGTYPES_H__
17 
18 // suppression warnings
19 // warning C4251: 'ipsdk::imaproc::filter::GradientXYImg::_pXGradImg' : class 'boost::shared_ptr<T>' needs to have dll-interface to be used by clients of struct 'ipsdk::imaproc::filter::GradientXYImg'
20 #pragma warning (push)
21 #pragma warning (disable : 4251)
22 
25 
26 namespace ipsdk {
27 namespace imaproc {
28 namespace filter {
29 
32 
37 {
40  GradientXYImg(const image::ImagePtr& pXGradImg,
41  const image::ImagePtr& pYGradImg) :
42  _pXGradImg(pXGradImg),
43  _pYGradImg(pYGradImg) {}
44  ~GradientXYImg() {}
46 
49 
52 };
53 
56 
57 } // end of namespace filter
58 } // end of namespace imaproc
59 } // end of namespace ipsdk
60 
61 #pragma warning (pop)
62 
63 #endif // __IPSDKIPLFILTERING_GRADIENT2DIMGTYPES_H__
boost::shared_ptr< BaseImage > ImagePtr
image::ImagePtr _pXGradImg
X gradient image.
Definition: Gradient2dImgTypes.h:48
#define IPSDKIPLFILTERING_API
Import/Export macro for library IPSDKIPLFiltering.
Definition: IPSDKIPLFilteringExports.h:25
image::ImagePtr _pYGradImg
Y gradient image.
Definition: Gradient2dImgTypes.h:51
Definition of import/export macro for library.
Structure allowing to encaspulate x and y images associated to the result of a 2d gradient computatio...
Definition: Gradient2dImgTypes.h:36