Searched refs:CvComplex64f (Results 1 – 3 of 3) sorted by relevance
/external/opencv/cxcore/src/ |
D | _cxcore.h | 98 struct CvComplex64f; 106 explicit CvComplex32f( const CvComplex64f& v ); 109 operator CvComplex64f() const; 112 struct CvComplex64f struct 116 CvComplex64f() {} in CvComplex64f() argument 117 CvComplex64f( double _re, double _im=0 ) : re(_re), im(_im) {} in re() argument 118 explicit CvComplex64f( const CvComplex32f& v ); 124 inline CvComplex32f::CvComplex32f( const CvComplex64f& v ) : re((float)v.re), im((float)v.im) {} in CvComplex32f() 125 inline CvComplex64f::CvComplex64f( const CvComplex32f& v ) : re(v.re), im(v.im) {} in CvComplex64f() function 189 inline CvComplex32f::operator CvComplex64f() const in CvComplex64f() function [all …]
|
D | cxdxt.cpp | 227 CvComplex64f w, w1; in icvDFTInit() 247 if( elem_size == sizeof(CvComplex64f) ) in icvDFTInit() 248 ((CvComplex64f*)_wave)[0] = CvComplex64f(1.,0.); in icvDFTInit() 368 if( elem_size == sizeof(CvComplex64f) ) in icvDFTInit() 370 CvComplex64f* wave = (CvComplex64f*)_wave; in icvDFTInit() 433 icvDFT_64fc( const CvComplex64f* src, CvComplex64f* dst, int n, in icvDFT_64fc() 435 const CvComplex64f* wave, int tab_size, in icvDFT_64fc() 436 const void* spec, CvComplex64f* buf, in icvDFT_64fc() 443 CvComplex64f t; in icvDFT_64fc() 502 CvComplex64f* dsth = dst + n2; in icvDFT_64fc() [all …]
|
D | cxmatmul.cpp | 563 ICV_DEF_GEMM_SINGLE_MUL( 32f_C2R, CvComplex32f, CvComplex64f) 564 ICV_DEF_GEMM_BLOCK_MUL( 32f_C2R, CvComplex32f, CvComplex64f) 565 ICV_DEF_GEMM_STORE( 32f_C2R, CvComplex32f, CvComplex64f) 567 ICV_DEF_GEMM_SINGLE_MUL( 64f_C2R, CvComplex64f, CvComplex64f) 568 ICV_DEF_GEMM_BLOCK_MUL( 64f_C2R, CvComplex64f, CvComplex64f) 569 ICV_DEF_GEMM_STORE( 64f_C2R, CvComplex64f, CvComplex64f) 1076 CvComplex64f _alpha, _beta; in cvGEMM()
|