OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CvComplex32f
(Results
1 - 3
of
3
) sorted by null
/external/opencv/cxcore/src/
_cxcore.h
97
struct
CvComplex32f
;
100
struct
CvComplex32f
104
CvComplex32f
() {}
105
CvComplex32f
( float _re, float _im=0 ) : re(_re), im(_im) {}
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
& v )
[
all
...]
cxdxt.cpp
250
((
CvComplex32f
*)_wave)[0] =
CvComplex32f
(1.f,0.f);
394
CvComplex32f
* wave = (
CvComplex32f
*)_wave;
395
assert( elem_size == sizeof(
CvComplex32f
) );
856
icvDFT_32fc( const
CvComplex32f
* src,
CvComplex32f
* dst, int n,
858
const
CvComplex32f
* wave, int tab_size,
859
const void* spec,
CvComplex32f
* buf,
866
CvComplex32f
t
[
all
...]
cxmatmul.cpp
[
all
...]
Completed in 102 milliseconds