Enum FaceEmbeddingModel
- Namespace
- VisioForge.Core.Types.X.AI
- Assembly
- VisioForge.Core.dll
The face-embedding model family used by the face recognizer. The family only selects the input preprocessing of the aligned 112x112 crop (channel order and normalization); the embedding length is always read from the model itself, so any vector size works.
public enum FaceEmbeddingModelFields
SFace = 0-
OpenCV Zoo SFace (Apache-2.0). Aligned BGR crop fed as raw 0..255 values; produces a 128-D embedding. Designed to pair with the YuNet detector and its five landmarks. This is the default.
ArcFace = 1-
ArcFace-style recognizer (for example AuraFace, Apache-2.0). Aligned RGB crop normalized with
(pixel - 127.5) / 127.5; typically produces a 512-D embedding.