OpenCV  3.0.0
Open Source Computer Vision
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Public Member Functions | Public Attributes | List of all members
cv::Complex< _Tp > Class Template Reference

A complex number class. More...

#include "types.hpp"

Public Member Functions

 Complex ()
 constructors More...
 
 Complex (_Tp _re, _Tp _im=0)
 
Complex conj () const
 conjugation More...
 
template<typename T2 >
 operator Complex< T2 > () const
 conversion to another data type More...
 

Public Attributes

_Tp im
 
_Tp re
 

Detailed Description

template<typename _Tp>
class cv::Complex< _Tp >

A complex number class.

The template class is similar and compatible with std::complex, however it provides slightly more convenient access to the real and imaginary parts using through the simple field access, as opposite to std::complex::real() and std::complex::imag().

Constructor & Destructor Documentation

template<typename _Tp>
cv::Complex< _Tp >::Complex ( )

constructors

template<typename _Tp>
cv::Complex< _Tp >::Complex ( _Tp  _re,
_Tp  _im = 0 
)

Member Function Documentation

template<typename _Tp>
Complex cv::Complex< _Tp >::conj ( ) const

conjugation

template<typename _Tp>
template<typename T2 >
cv::Complex< _Tp >::operator Complex< T2 > ( ) const

conversion to another data type

Member Data Documentation

template<typename _Tp>
_Tp cv::Complex< _Tp >::im
template<typename _Tp>
_Tp cv::Complex< _Tp >::re

The documentation for this class was generated from the following file: