IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
GaborParams.h
1 // GaborParams.h:
3 // --------------
4 //
15 
16 #ifndef __IPSDKIPLATTRIBUTES_GABORPARAMS_H__
17 #define __IPSDKIPLATTRIBUTES_GABORPARAMS_H__
18 
21 
22 namespace ipsdk {
23 namespace imaproc {
24 namespace attr {
25 
31 
32 IPSDK_DECLARE_NODE_DATA(IPSDKIPLAttributes, GaborParams,
33  ((LEAF)(StdDevX)(ipsdk::ipReal32)(10.f))
34  ((LEAF)(StdDevY)(ipsdk::ipReal32)(2.f))
35  ((LEAF)(StdDevZ)(ipsdk::ipReal32)(0.f))
36  ((LEAF)(Theta)(ipsdk::ipReal32)(0.f))
37  ((LEAF)(Phi)(ipsdk::ipReal32)(0.f)))
38 };
39 
42 
45 typedef boost::shared_ptr<ipsdk::imaproc::attr::GaborParams> GaborParamsPtr;
46 
49 typedef boost::shared_ptr<const ipsdk::imaproc::attr::GaborParams> GaborParamsConstPtr;
50 
53 
58 
63 createGaborParams2d(const ipReal32 stdDevX,
64  const ipReal32 stdDevY,
65  const ipReal32 theta);
67 createGaborParams3d(const ipReal32 stdDevX,
68  const ipReal32 stdDevY,
69  const ipReal32 stdDevZ,
70  const ipReal32 theta,
71  const ipReal32 phi);
73 
76 
77 } // end of namespace attr
78 } // end of namespace imaproc
79 } // end of namespace ipsdk
80 
81 #endif // __IPSDKIPLATTRIBUTES_GABORPARAMS_H__
#define IPSDK_DECLARE_NODE_DATA(libraryName, className, childSeq)
IPSDKIPLATTRIBUTES_API GaborParamsPtr createGaborParams2d(const ipReal32 stdDevX, const ipReal32 stdDevY, const ipReal32 theta)
function allowing to create a custom GaborParams object
boost::shared_ptr< ipsdk::imaproc::attr::GaborParams > GaborParamsPtr
shared pointer to ipsdk::imaproc::attr::GaborParams
Definition: GaborParams.h:187
boost::shared_ptr< const ipsdk::imaproc::attr::GaborParams > GaborParamsConstPtr
shared pointer to const ipsdk::imaproc::attr::GaborParams
Definition: GaborParams.h:191
IPSDKIPLATTRIBUTES_API GaborParamsPtr createGaborParams3d(const ipReal32 stdDevX, const ipReal32 stdDevY, const ipReal32 stdDevZ, const ipReal32 theta, const ipReal32 phi)
function allowing to create a custom GaborParams object
Definition of import/export macro for library.
#define IPSDKIPLATTRIBUTES_API
Import/Export macro for library IPSDKIPLAttributes.
Definition: IPSDKIPLAttributesExports.h:25
IPSDKIPLATTRIBUTES_API GaborParamsPtr createDefaultGaborParams()
function allowing to create a default GaborParams object
float ipReal32