class cv::cuda::DFT
Overview
Base class for DFT operator as a cv::Algorithm. : Moreā¦
#include <cudaarithm.hpp> class DFT: public cv::Algorithm { public: // methods virtual void compute( InputArray image, OutputArray result, Stream& stream = Stream::Null() ) = 0; };
Inherited Members
public: // methods virtual void clear(); virtual bool empty() const; virtual String getDefaultName() const; virtual void read(const FileNode& fn); virtual void save(const String& filename) const; virtual void write(FileStorage& fs) const; template <typename _Tp> static Ptr<_Tp> load( const String& filename, const String& objname = String() ); template <typename _Tp> static Ptr<_Tp> loadFromString( const String& strModel, const String& objname = String() ); template <typename _Tp> static Ptr<_Tp> read(const FileNode& fn); protected: // methods void writeFormat(FileStorage& fs) const;
Detailed Documentation
Base class for DFT operator as a cv::Algorithm. :
Methods
virtual void compute( InputArray image, OutputArray result, Stream& stream = Stream::Null() ) = 0
Computes an FFT of a given image.
Parameters:
image | Source image. Only CV_32FC1 images are supported for now. |
result | Result image. |
stream | Stream for the asynchronous version. |