|
virtual int | getGridX () const =0 |
|
virtual int | getGridY () const =0 |
|
virtual std::vector< cv::Mat > | getHistograms () const =0 |
|
virtual cv::Mat | getLabels () const =0 |
|
virtual int | getNeighbors () const =0 |
|
virtual int | getRadius () const =0 |
|
virtual double | getThreshold () const =0 |
|
virtual void | setGridX (int val)=0 |
|
virtual void | setGridY (int val)=0 |
|
virtual void | setNeighbors (int val)=0 |
|
virtual void | setRadius (int val)=0 |
|
virtual void | setThreshold (double val)=0 |
|
virtual String | getLabelInfo (int label) const |
| Gets string information by label. More...
|
|
virtual std::vector< int > | getLabelsByString (const String &str) const |
| Gets vector of labels by string. More...
|
|
virtual void | load (const String &filename) |
| Loads a FaceRecognizer and its model state. More...
|
|
virtual void | load (const FileStorage &fs)=0 |
|
int | predict (InputArray src) const |
|
void | predict (InputArray src, int &label, double &confidence) const |
| Predicts a label and associated confidence (e.g. distance) for a given input image. More...
|
|
virtual void | predict (InputArray src, Ptr< PredictCollector > collector, const int state=0) const =0 |
|
- if implemented - send all result of prediction to collector that can be used for somehow custom result handling
More...
|
|
virtual void | save (const String &filename) const |
| Saves a FaceRecognizer and its model state. More...
|
|
virtual void | save (FileStorage &fs) const =0 |
|
virtual void | setLabelInfo (int label, const String &strInfo) |
| Sets string info for the specified model's label. More...
|
|
virtual void | train (InputArrayOfArrays src, InputArray labels)=0 |
| Trains a FaceRecognizer with given data and associated labels. More...
|
|
virtual void | update (InputArrayOfArrays src, InputArray labels) |
| Updates a FaceRecognizer with given data and associated labels. More...
|
|
| 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 | write (FileStorage &fs) const |
| Stores algorithm parameters in a file storage. More...
|
|