Iris SDK  1.0
Iris Recognition Software Development Kit
codes.h
Go to the documentation of this file.
1 #pragma once
2 
6 namespace iris_sdk
7 {
8 const static int32_t
11 SUCCESS = 0,
12  /*Failed to process image*/
13 FAILED_IMAGE_PROCESSING = 1,
14 /*Failed to process image*/
15 FAILED_FEATURE_EXTRACTION = 2,
16 /*Invalid buffer*/
17 INVALID_BUFFER = 3,
18 /*Invalid id*/
19 INVALID_ID = 4,
20 /*License limit exceeded*/
21 LICENSE_LIMIT_EXCEEDED = 5,
22 /*Record not found*/
23 RECORD_NOT_FOUND = 6,
24 /*Failed to delete*/
25 RECORD_DELETE_FAILED = 7;
26 }
Definition: codes.h:6