|
Enrollment 28.2.0
|
It contains extraction configuration. More...
#include <Face.h>
Public Types | |
| enum class | Type : uint8_t { ACCURATE , BALANCED , FAST } |
| Type of neural network extractor. More... | |
Public Member Functions | |
| void | SetExtractor (Type value) |
| Function sets type of extractor. | |
| Type | GetExtractor () const |
| Function gets extractor type. | |
| void | WriteTo (Writer &writer) const final |
| Function serializes configuration via provided Writer. | |
| FaceExtractorConfig ()=default | |
| Constructs default configuration. | |
Static Public Member Functions | |
| static FaceExtractorConfig | Default () |
| Provides default configuration. | |
It contains extraction configuration.
|
strong |
Type of neural network extractor.
| Enumerator | |
|---|---|
| ACCURATE | Face templates suitable for verification/identification of very high accuracy are created when accurate mode is used. However the performance of the face template creation is not as good as when
|
| BALANCED | Face templates suitable for verification/identification of high accuracy are created when balanced mode is used. The performance of the face template creation is somewhere in between of
|
| FAST | Face templates suitable for verification of fairly good accuracy are created when fast mode is used. The performance of face template creation is very fast. Suitable for mobile/embedded devices.
|
|
default |
Constructs default configuration.
References BALANCED, and FaceExtractorConfig().
Referenced by Default(), and FaceExtractorConfig().
|
inlinestatic |
Provides default configuration.
References FaceExtractorConfig().
Referenced by Face::Extract().
|
inlinenodiscard |
Function gets extractor type.
Referenced by Face::Extract().
|
inline |
Function sets type of extractor.
| value | type from FaceExtractorConfig::Type. |
|
inlinefinalvirtual |
Function serializes configuration via provided Writer.
| writer | used to serialize Config. |
Implements Serializable.