Searched defs:CvComplex32f (Results 1 - 1 of 1) sorted by relevance

/external/opencv/cxcore/src/
H A D_cxcore.h97 struct CvComplex32f;
100 struct CvComplex32f struct
104 CvComplex32f() {} function in struct:CvComplex32f
105 CvComplex32f( float _re, float _im=0 ) : re(_re), im(_im) {} function in struct:CvComplex32f
106 explicit CvComplex32f( const CvComplex64f& v );
107 //CvComplex32f( const CvComplex32f& v ) : re(v.re), im(v.im) {}
108 //CvComplex32f& operator = (const CvComplex32f& v ) { re = v.re; im = v.im; return *this; }
118 explicit CvComplex64f( const CvComplex32f
124 inline CvComplex32f::CvComplex32f( const CvComplex64f& v ) : re((float)v.re), im((float)v.im) {} function in class:CvComplex32f
[all...]

Completed in 158 milliseconds