FacePhi SelphID SDK DotNet API
Loading...
Searching...
No Matches
SelphIDIdentifierResultNet.h
1#pragma once
2using namespace System;
3
4#include "SelphIDIdentifierResult.h"
6
7namespace FPhiSelphIDNet {
11public
13 private:
14 FPhiSelphID::SelphIDIdentifierResult *_selphIDIdentifierResult;
15
16 internal : SelphIDIdentifierResult(const FPhiSelphID::SelphIDIdentifierResult &selphIDIdentifierResult);
17 const FPhiSelphID::SelphIDIdentifierResult *GetInternalSelphIDIdentifierResult();
18
19 public:
24
29
34
43 void AddResult(float similarity, int galleryIndex, String ^ templateID,
44 FacialAuthenticationStatus facialAuthenticationStatus,
45 FacialAuthenticationDetail facialAuthenticationDetail);
46
51 int Size();
52
56
59 float GetSimilarity(int index);
60
66 int GetGalleryIndex(int index);
67
73 String ^ GetTemplateID(int index);
74
81
88};
89} // namespace FPhiSelphIDNet
FacialAuthenticationDetail
Facial authentication detail.
Definition SelphIDConstantsNet.h:401
FacialAuthenticationStatus
Facial Authentication status.
Definition SelphIDConstantsNet.h:10
SelphIDIdentifierResult.
Definition SelphIDIdentifierResultNet.h:12
String ^ GetTemplateID(int index)
Gets templateID from result index.
~SelphIDIdentifierResult()
SelphIDIdentifierResult destructor.
int GetGalleryIndex(int index)
Gets gallery index from result index.
void AddResult(float similarity, int galleryIndex, String ^ templateID, FacialAuthenticationStatus facialAuthenticationStatus, FacialAuthenticationDetail facialAuthenticationDetail)
Add identifier result.
FacialAuthenticationStatus GetFacialAuthenticationStatus(int index)
Gets Facial authentication status from result index.
FacialAuthenticationDetail GetFacialAuthenticationDetail(int index)
Gets Facial authentication detail from result index.
int Size()
Gets identifier result size.
float GetSimilarity(int index)
Gets similarity from result index.
SelphIDIdentifierResult()
Creates a new instance of SelphIDIdentifierResult.