3DiVi Face SDK  3.21.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Groups
SampleCheckStatus.h
1 #ifndef __PBIO_API__PBIO__SAMPLE_CHECK_STATUS_H_
2 #define __PBIO_API__PBIO__SAMPLE_CHECK_STATUS_H_
3 
4 namespace pbio
5 {
6 
16 {
17  enum Verdict
18  {
27  PASSED = 0,
28 
37  FAILED = 1,
38 
48  };
49 };
50 
51 } // pbio pbio
52 
53 #endif // __PBIO_API__PBIO__SAMPLE_CHECK_STATUS_H_
Sample passed the checking.
Definition: SampleCheckStatus.h:27
The result of some kind of sample checking.
Definition: SampleCheckStatus.h:15
Verdict
Definition: SampleCheckStatus.h:17
Sample did not pass the checking.
Definition: SampleCheckStatus.h:37
Sample was not checked.
Definition: SampleCheckStatus.h:47