OpenCV453
|
Abstract base class for all face recognition models [詳解]
#include <face.hpp>
cv::Algorithmを継承しています。
cv::face::BasicFaceRecognizer, cv::face::LBPHFaceRecognizerに継承されています。
公開メンバ関数 | |
virtual CV_WRAP void | train (InputArrayOfArrays src, InputArray labels)=0 |
Trains a FaceRecognizer with given data and associated labels. [詳解] | |
virtual CV_WRAP void | update (InputArrayOfArrays src, InputArray labels) |
Updates a FaceRecognizer with given data and associated labels. [詳解] | |
CV_WRAP_AS (predict_label) int predict(InputArray src) const | |
CV_WRAP void | predict (InputArray src, CV_OUT int &label, CV_OUT double &confidence) const |
Predicts a label and associated confidence (e.g. distance) for a given input image. [詳解] | |
CV_WRAP_AS (predict_collect) virtual void predict(InputArray src | |
| |
virtual CV_WRAP void | write (const String &filename) const |
Saves a FaceRecognizer and its model state. [詳解] | |
virtual CV_WRAP void | read (const String &filename) |
Loads a FaceRecognizer and its model state. [詳解] | |
virtual void | write (FileStorage &fs) const CV_OVERRIDE=0 |
virtual void | read (const FileNode &fn) CV_OVERRIDE=0 |
virtual bool | empty () const CV_OVERRIDE=0 |
virtual CV_WRAP void | setLabelInfo (int label, const String &strInfo) |
Sets string info for the specified model's label. [詳解] | |
virtual CV_WRAP String | getLabelInfo (int label) const |
Gets string information by label. [詳解] | |
virtual CV_WRAP std::vector< int > | getLabelsByString (const String &str) const |
Gets vector of labels by string. [詳解] | |
virtual double | getThreshold () const =0 |
threshold parameter accessor - required for default BestMinDist collector [詳解] | |
virtual void | setThreshold (double val)=0 |
Sets threshold of model [詳解] | |
![]() | |
virtual CV_WRAP void | clear () |
Clears the algorithm state [詳解] | |
CV_WRAP void | write (const Ptr< FileStorage > &fs, const String &name=String()) const |
simplified API for language bindings これはオーバーロードされたメンバ関数です。利便性のために用意されています。元の関数との違いは引き数のみです。 | |
virtual CV_WRAP void | save (const String &filename) const |
virtual CV_WRAP String | getDefaultName () const |
公開変数類 | |
Ptr< PredictCollector > collector | const = 0 |
限定公開変数類 | |
std::map< int, String > | _labelsInfo |
その他の継承メンバ | |
![]() | |
template<typename _Tp > | |
static Ptr< _Tp > | read (const FileNode &fn) |
Reads algorithm from the file node [詳解] | |
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 [詳解] | |
![]() | |
void | writeFormat (FileStorage &fs) const |
Abstract base class for all face recognition models
All face recognition models in OpenCV are derived from the abstract base class FaceRecognizer, which provides a unified access to all face recongition algorithms in OpenCV.
I'll go a bit more into detail explaining FaceRecognizer, because it doesn't look like a powerful interface at first sight. But: Every FaceRecognizer is an Algorithm, so you can easily get/set all model internals (if allowed by the implementation). Algorithm is a relatively new OpenCV concept, which is available since the 2.4 release. I suggest you take a look at its description.
Algorithm provides the following features for all derived classes:
Moreover every FaceRecognizer supports the:
Sometimes you run into the situation, when you want to apply a threshold on the prediction. A common scenario in face recognition is to tell, whether a face belongs to the training dataset or if it is unknown. You might wonder, why there's no public API in FaceRecognizer to set the threshold for the prediction, but rest assured: It's supported. It just means there's no generic way in an abstract class to provide an interface for setting/getting the thresholds of every possible FaceRecognizer algorithm. The appropriate place to set the thresholds is in the constructor of the specific FaceRecognizer and since every FaceRecognizer is a Algorithm (see above), you can get/set the thresholds at runtime!
Here is an example of setting a threshold for the Eigenfaces method, when creating the model:
Sometimes it's impossible to train the model, just to experiment with threshold values. Thanks to Algorithm it's possible to set internal model thresholds during runtime. Let's see how we would set/get the prediction for the Eigenface model, we've created above:
If you've set the threshold to 0.0 as we did above, then:
is going to yield -1 as predicted label, which states this face is unknown.
Since every FaceRecognizer is a Algorithm, you can use Algorithm::name to get the name of a FaceRecognizer:
cv::face::FaceRecognizer::CV_WRAP_AS | ( | predict_collect | ) |
src | Sample image to get a prediction from. |
collector | User-defined collector object that accepts all results |
To implement this method u just have to do same internal cycle as in predict(InputArray src, CV_OUT int &label, CV_OUT double &confidence) but not try to get "best@ result, just resend it to caller side with given collector
cv::face::FaceRecognizer::CV_WRAP_AS | ( | predict_label | ) | const |
これはオーバーロードされたメンバ関数です。利便性のために用意されています。元の関数との違いは引き数のみです。
|
pure virtual |
これはオーバーロードされたメンバ関数です。利便性のために用意されています。元の関数との違いは引き数のみです。
cv::Algorithmを再実装しています。
cv::face::BasicFaceRecognizerで実装されています。
|
virtual |
Gets string information by label.
If an unknown label id is provided or there is no label information associated with the specified label id the method returns an empty string.
|
virtual |
Gets vector of labels by string.
The function searches for the labels containing the specified sub-string in the associated string info.
|
pure virtual |
threshold parameter accessor - required for default BestMinDist collector
cv::face::BasicFaceRecognizer, cv::face::LBPHFaceRecognizerで実装されています。
CV_WRAP void cv::face::FaceRecognizer::predict | ( | InputArray | src, |
CV_OUT int & | label, | ||
CV_OUT double & | confidence | ||
) | const |
Predicts a label and associated confidence (e.g. distance) for a given input image.
src | Sample image to get a prediction from. |
label | The predicted label for the given image. |
confidence | Associated confidence (e.g. distance) for the predicted label. |
The suffix const means that prediction does not affect the internal model state, so the method can be safely called from within different threads.
The following example shows how to get a prediction from a trained model:
Or to get a prediction and the associated confidence (e.g. distance):
|
pure virtual |
これはオーバーロードされたメンバ関数です。利便性のために用意されています。元の関数との違いは引き数のみです。
cv::Algorithmを再実装しています。
cv::face::BasicFaceRecognizer, cv::face::BasicFaceRecognizerで実装されています。
|
virtual |
Loads a FaceRecognizer and its model state.
Loads a persisted model and state from a given XML or YAML file . Every FaceRecognizer has to overwrite FaceRecognizer::load(FileStorage& fs) to enable loading the model state. FaceRecognizer::load(FileStorage& fs) in turn gets called by FaceRecognizer::load(const String& filename), to ease saving a model.
cv::face::BasicFaceRecognizerで再実装されています。
|
virtual |
Sets string info for the specified model's label.
The string info is replaced by the provided value if it was set before for the specified label.
|
pure virtual |
Sets threshold of model
cv::face::BasicFaceRecognizer, cv::face::LBPHFaceRecognizerで実装されています。
|
pure virtual |
Trains a FaceRecognizer with given data and associated labels.
src | The training images, that means the faces you want to learn. The data has to be given as a vector<Mat>. |
labels | The labels corresponding to the images have to be given either as a vector<int> or a Mat of type CV_32SC1. |
The following source code snippet shows you how to learn a Fisherfaces model on a given set of images. The images are read with imread and pushed into a std::vector<Mat>. The labels of each image are stored within a std::vector<int> (you could also use a Mat of type CV_32SC1). Think of the label as the subject (the person) this image belongs to, so same subjects (persons) should have the same label. For the available FaceRecognizer you don't have to pay any attention to the order of the labels, just make sure same persons have the same label:
Now that you have read some images, we can create a new FaceRecognizer. In this example I'll create a Fisherfaces model and decide to keep all of the possible Fisherfaces:
And finally train it on the given dataset (the face images and labels):
|
virtual |
Updates a FaceRecognizer with given data and associated labels.
src | The training images, that means the faces you want to learn. The data has to be given as a vector<Mat>. |
labels | The labels corresponding to the images have to be given either as a vector<int> or a Mat of type CV_32SC1. |
This method updates a (probably trained) FaceRecognizer, but only if the algorithm supports it. The Local Binary Patterns Histograms (LBPH) recognizer (see createLBPHFaceRecognizer) can be updated. For the Eigenfaces and Fisherfaces method, this is algorithmically not possible and you have to re-estimate the model with FaceRecognizer::train. In any case, a call to train empties the existing model and learns a new model, while update does not delete any model data.
Calling update on an Eigenfaces model (see EigenFaceRecognizer::create), which doesn't support updating, will throw an error similar to:
|
virtual |
Saves a FaceRecognizer and its model state.
Saves this model to a given filename, either as XML or YAML.
filename | The filename to store this FaceRecognizer to (either XML/YAML). |
Every FaceRecognizer overwrites FaceRecognizer::save(FileStorage& fs) to save the internal model state. FaceRecognizer::save(const String& filename) saves the state of a model to the given filename.
The suffix const means that prediction does not affect the internal model state, so the method can be safely called from within different threads.
cv::face::BasicFaceRecognizerで再実装されています。
|
pure virtual |
これはオーバーロードされたメンバ関数です。利便性のために用意されています。元の関数との違いは引き数のみです。 Saves this model to a given FileStorage.
fs | The FileStorage to store this FaceRecognizer to. |
cv::Algorithmを再実装しています。
cv::face::BasicFaceRecognizer, cv::face::BasicFaceRecognizerで実装されています。