![]() |
OpenCV
4.10.0
Open Source Computer Vision
|
Base class for 1st and 2nd stages of Neumann and Matas scene text detection algorithm [204]. : More...
#include <opencv2/text/erfilter.hpp>
Classes | |
| class | Callback |
| Callback with the classifier is made a class. More... | |
Public Member Functions | |
| virtual int | getNumRejected () const =0 |
| virtual void | run (InputArray image, std::vector< ERStat > ®ions)=0 |
| The key method of ERFilter algorithm. | |
| virtual void | setCallback (const Ptr< ERFilter::Callback > &cb)=0 |
| set/get methods to set the algorithm properties, | |
| virtual void | setMaxArea (float maxArea)=0 |
| virtual void | setMinArea (float minArea)=0 |
| virtual void | setMinProbability (float minProbability)=0 |
| virtual void | setMinProbabilityDiff (float minProbabilityDiff)=0 |
| virtual void | setNonMaxSuppression (bool nonMaxSuppression)=0 |
| virtual void | setThresholdDelta (int thresholdDelta)=0 |
Public Member Functions inherited from cv::Algorithm | |
| Algorithm () | |
| virtual | ~Algorithm () |
| virtual void | clear () |
| Clears the algorithm state. | |
| virtual bool | empty () const |
| Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read. | |
| virtual String | getDefaultName () const |
| virtual void | read (const FileNode &fn) |
| Reads algorithm parameters from a file storage. | |
| virtual void | save (const String &filename) const |
| void | write (const Ptr< FileStorage > &fs, const String &name=String()) const |
| virtual void | write (FileStorage &fs) const |
| Stores algorithm parameters in a file storage. | |
| void | write (FileStorage &fs, const String &name) const |
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. | |
| template<typename _Tp > | |
| static Ptr< _Tp > | loadFromString (const String &strModel, const String &objname=String()) |
| Loads algorithm from a String. | |
| template<typename _Tp > | |
| static Ptr< _Tp > | read (const FileNode &fn) |
| Reads algorithm from the file node. | |
Protected Member Functions inherited from cv::Algorithm | |
| void | writeFormat (FileStorage &fs) const |
Base class for 1st and 2nd stages of Neumann and Matas scene text detection algorithm [204]. :
Extracts the component tree (if needed) and filter the extremal regions (ER's) by using a given classifier.
|
pure virtual |
|
pure virtual |
The key method of ERFilter algorithm.
Takes image on input and returns the selected regions in a vector of ERStat only distinctive ERs which correspond to characters are selected by a sequential classifier
| image | Single channel image CV_8UC1 |
| regions | Output for the 1st stage and Input/Output for the 2nd. The selected Extremal Regions are stored here. |
Extracts the component tree (if needed) and filter the extremal regions (ER's) by using a given classifier.
|
pure virtual |
set/get methods to set the algorithm properties,
|
pure virtual |
|
pure virtual |
|
pure virtual |
|
pure virtual |
|
pure virtual |
|
pure virtual |
1.9.8