OpenCV  3.1.0
Open Source Computer Vision
Public Member Functions | List of all members
cv::cuda::CannyEdgeDetector Class Referenceabstract

Base class for Canny Edge Detector. : More...

#include "cudaimgproc.hpp"

Inheritance diagram for cv::cuda::CannyEdgeDetector:
cv::Algorithm

Public Member Functions

virtual void detect (InputArray image, OutputArray edges, Stream &stream=Stream::Null())=0
 Finds edges in an image using the [24] algorithm. More...
 
virtual void detect (InputArray dx, InputArray dy, OutputArray edges, Stream &stream=Stream::Null())=0
 
virtual int getAppertureSize () const =0
 
virtual double getHighThreshold () const =0
 
virtual bool getL2Gradient () const =0
 
virtual double getLowThreshold () const =0
 
virtual void setAppertureSize (int apperture_size)=0
 
virtual void setHighThreshold (double high_thresh)=0
 
virtual void setL2Gradient (bool L2gradient)=0
 
virtual void setLowThreshold (double low_thresh)=0
 
- Public Member Functions inherited from cv::Algorithm
 Algorithm ()
 
virtual ~Algorithm ()
 
virtual void clear ()
 Clears the algorithm state. More...
 
virtual bool empty () const
 Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read. More...
 
virtual String getDefaultName () const
 
virtual void read (const FileNode &fn)
 Reads algorithm parameters from a file storage. More...
 
virtual void save (const String &filename) const
 
virtual void write (FileStorage &fs) const
 Stores algorithm parameters in a file storage. More...
 

Additional Inherited Members

- Static Public Member Functions inherited from cv::Algorithm
template<typename _Tp >
static Ptr< _Tp > load (const String &filename, const String &objname=String())
 Loads algorithm from the file. More...
 
template<typename _Tp >
static Ptr< _Tp > loadFromString (const String &strModel, const String &objname=String())
 Loads algorithm from a String. More...
 
template<typename _Tp >
static Ptr< _Tp > read (const FileNode &fn)
 Reads algorithm from the file node. More...
 

Detailed Description

Base class for Canny Edge Detector. :

Member Function Documentation

virtual void cv::cuda::CannyEdgeDetector::detect ( InputArray  image,
OutputArray  edges,
Stream stream = Stream::Null() 
)
pure virtual

Finds edges in an image using the [24] algorithm.

Parameters
imageSingle-channel 8-bit input image.
edgesOutput edge map. It has the same size and type as image.
streamStream for the asynchronous version.
virtual void cv::cuda::CannyEdgeDetector::detect ( InputArray  dx,
InputArray  dy,
OutputArray  edges,
Stream stream = Stream::Null() 
)
pure virtual

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Parameters
dxFirst derivative of image in the vertical direction. Support only CV_32S type.
dyFirst derivative of image in the horizontal direction. Support only CV_32S type.
edgesOutput edge map. It has the same size and type as image.
streamStream for the asynchronous version.
virtual int cv::cuda::CannyEdgeDetector::getAppertureSize ( ) const
pure virtual
virtual double cv::cuda::CannyEdgeDetector::getHighThreshold ( ) const
pure virtual
virtual bool cv::cuda::CannyEdgeDetector::getL2Gradient ( ) const
pure virtual
virtual double cv::cuda::CannyEdgeDetector::getLowThreshold ( ) const
pure virtual
virtual void cv::cuda::CannyEdgeDetector::setAppertureSize ( int  apperture_size)
pure virtual
virtual void cv::cuda::CannyEdgeDetector::setHighThreshold ( double  high_thresh)
pure virtual
virtual void cv::cuda::CannyEdgeDetector::setL2Gradient ( bool  L2gradient)
pure virtual
virtual void cv::cuda::CannyEdgeDetector::setLowThreshold ( double  low_thresh)
pure virtual

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