Ballard, D.H. More...
#include "imgproc.hpp"
Public Member Functions | |
virtual void | clear () |
Clears the algorithm state. More... | |
virtual void | detect (InputArray image, OutputArray positions, OutputArray votes=noArray())=0 |
find template on image More... | |
virtual void | detect (InputArray edges, InputArray dx, InputArray dy, OutputArray positions, OutputArray votes=noArray())=0 |
virtual bool | empty () const |
Returns true if the Algorithm is empty (e.g. More... | |
virtual int | getCannyHighThresh () const =0 |
virtual int | getCannyLowThresh () const =0 |
virtual String | getDefaultName () const |
Returns the algorithm string identifier. More... | |
virtual double | getDp () const =0 |
virtual int | getLevels () const =0 |
virtual int | getMaxBufferSize () const =0 |
virtual double | getMinDist () const =0 |
virtual int | getVotesThreshold () const =0 |
virtual void | read (const FileNode &fn) |
Reads algorithm parameters from a file storage. More... | |
virtual void | save (const String &filename) const |
Saves the algorithm to a file. More... | |
virtual void | setCannyHighThresh (int cannyHighThresh)=0 |
Canny high threshold. More... | |
virtual void | setCannyLowThresh (int cannyLowThresh)=0 |
Canny low threshold. More... | |
virtual void | setDp (double dp)=0 |
Inverse ratio of the accumulator resolution to the image resolution. More... | |
virtual void | setLevels (int levels)=0 |
R-Table levels. More... | |
virtual void | setMaxBufferSize (int maxBufferSize)=0 |
Maximal size of inner buffers. More... | |
virtual void | setMinDist (double minDist)=0 |
Minimum distance between the centers of the detected objects. More... | |
virtual void | setTemplate (InputArray templ, Point templCenter=Point(-1,-1))=0 |
set template to search More... | |
virtual void | setTemplate (InputArray edges, InputArray dx, InputArray dy, Point templCenter=Point(-1,-1))=0 |
virtual void | setVotesThreshold (int votesThreshold)=0 |
The accumulator threshold for the template centers at the detection stage. The smaller it is, the more false positions may be detected. More... | |
virtual void | write (FileStorage &fs) const |
Stores algorithm parameters in a file storage. More... | |
Static Public Member Functions | |
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... | |
Protected Member Functions | |
void | writeFormat (FileStorage &fs) const |
Ballard, D.H.
(1981). Generalizing the Hough transform to detect arbitrary shapes. Pattern Recognition 13 (2): 111-122. Detects position only without traslation and rotation
|
inlinevirtualinherited |
Clears the algorithm state.
Reimplemented in cv::FlannBasedMatcher, cv::DescriptorMatcher, and cv::cuda::DescriptorMatcher.
|
pure virtualinherited |
find template on image
|
pure virtualinherited |
|
inlinevirtualinherited |
Returns true if the Algorithm is empty (e.g.
in the very beginning or after unsuccessful read
Reimplemented in cv::DescriptorMatcher, cv::ml::StatModel, cv::Feature2D, cv::BaseCascadeClassifier, and cv::cuda::DescriptorMatcher.
|
pure virtualinherited |
|
pure virtualinherited |
|
virtualinherited |
Returns the algorithm string identifier.
This string is used as top level xml/yml node tag when the object is saved to a file or string.
|
pure virtualinherited |
|
pure virtual |
|
pure virtualinherited |
|
pure virtualinherited |
|
pure virtual |
|
inlinestaticinherited |
Loads algorithm from the file.
filename | Name of the file to read. |
objname | The optional name of the node to read (if empty, the first top-level node will be used) |
This is static template method of Algorithm. It's usage is following (in the case of SVM):
In order to make this method work, the derived class must overwrite Algorithm::read(const FileNode& fn).
References cv::Ptr< T >::empty(), cv::FileNode::empty(), cv::FileStorage::getFirstTopLevelNode(), and cv::FileStorage::READ.
|
inlinestaticinherited |
Loads algorithm from a String.
strModel | The string variable containing the model you want to load. |
objname | The optional name of the node to read (if empty, the first top-level node will be used) |
This is static template method of Algorithm. It's usage is following (in the case of SVM):
References CV_WRAP, cv::Ptr< T >::empty(), cv::FileNode::empty(), cv::FileStorage::getFirstTopLevelNode(), cv::FileStorage::MEMORY, and cv::FileStorage::READ.
|
inlinevirtualinherited |
Reads algorithm parameters from a file storage.
Reimplemented in cv::FlannBasedMatcher, cv::DescriptorMatcher, and cv::Feature2D.
|
inlinestaticinherited |
Reads algorithm from the file node.
This is static template method of Algorithm. It's usage is following (in the case of SVM):
In order to make this method work, the derived class must overwrite Algorithm::read(const FileNode& fn) and also have static create() method without parameters (or with all the optional parameters)
References cv::Ptr< T >::empty().
|
virtualinherited |
Saves the algorithm to a file.
In order to make this method work, the derived class must implement Algorithm::write(FileStorage& fs).
|
pure virtualinherited |
Canny high threshold.
|
pure virtualinherited |
Canny low threshold.
|
pure virtualinherited |
Inverse ratio of the accumulator resolution to the image resolution.
|
pure virtual |
R-Table levels.
|
pure virtualinherited |
Maximal size of inner buffers.
|
pure virtualinherited |
Minimum distance between the centers of the detected objects.
|
pure virtualinherited |
set template to search
|
pure virtualinherited |
|
pure virtual |
The accumulator threshold for the template centers at the detection stage. The smaller it is, the more false positions may be detected.
|
inlinevirtualinherited |
Stores algorithm parameters in a file storage.
Reimplemented in cv::FlannBasedMatcher, cv::DescriptorMatcher, and cv::Feature2D.
|
protectedinherited |