Skip to main content

SearchMode

Search modes for face recognition operations.

enum SearchMode {
EAGER = 0,
EXHAUSTIVE = 1,
}

Values

EnumValueDescription
EAGER0Stops searching when a face feature vector meets the threshold. Optimized for speed when finding the first acceptable match is sufficient
EXHAUSTIVE1Searches through all face features to find the best possible match. More thorough but potentially slower than EAGER mode