AADHAAR BIOMETRIC SDK API SPECIFICATION - VERSION 2.0 MAY
|
|
|
- May Richards
- 9 years ago
- Views:
Transcription
1 UIDAI Unique Identification Authority of India Planning Commission, Govt. of India (GoI), 3rd Floor, Tower II, Jeevan Bharati Building, Connaught Circus, New Delhi AADHAAR BIOMETRIC SDK API SPECIFICATION - VERSION 2.0 MAY 2012
2 Aadhaar Biometrics SDK API Table of Contents 1. INTRODUCTION USE OF BIOMETRICS IN AADHAAR TARGET AUDIENCE AND PRE-REQUISITES BIOMETRIC SDK API Purpose of the Common API Functional Requirements Technical Requirements FURTHER READING APPENDIX JAVA DOCUMENTATION PACKAGE IN.GOV.UIDAI.QSSITV PACKAGE IN.GOV.UIDAI.QSSITV.MODEL PACKAGE IN.GOV.UIDAI.QSSITV.SPI UIDAI, Page 2 of 67
3 Aadhaar Biometrics SDK API 1. Introduction The Unique Identification Authority of India (UIDAI) has been created, with the mandate of providing a Unique Identity (Aadhaar) to all Indian residents that can be authenticated online. 1.1 Use of Biometrics in Aadhaar UIDAI has adopted use of biometrics technology as part of its core strategy in meeting its goal of preventing issuance of duplicate identity number to a resident. There is no method or technology, other than biometrics, that can catch a person who is disclaiming his real identity. Biometrics consists of methods for uniquely recognizing human beings based on one or more of their intrinsic physical or behavioural traits. By matching a person s biometric characteristics with everyone else s (known as de-duplication), the technology helps prevent issuance of duplicate identity (Aadhaar number) to a single person. Aadhaar enrolment is the process wherein resident data (demographics and biometrics) is collected through a uniform process, sent to Central Information Data Repository (CIDR), and biometrically matched (de-duplicated) against every resident in the database to ensure uniqueness to issue a 12-digit Aadhaar Number. Enrolment system has two major parts: i) client-side and ii) server-side. The client-side is responsible for operator-assisted collection of relevant data from the resident in the field. Biometric quality check, segmentation, and local verification are performed on the client to ensure best quality biometrics impressions are collected from each resident. The encrypted data packet created by the client software is then transmitted to UIDAI Central Information Data Repository (CIDR) where it is fed to the server-side system. The backend server-side system uses multiple automatic biometric identification systems (ABISs) to determine whether the resident is unique (that is, the resident has never received another Aadhaar number before). The decision (and the Aadhaar number in case the decision of the system is that the resident is unique) is conveyed from the server-side system back to the resident through a letter delivered by the department of post. Aadhaar authentication means the process wherein Aadhaar Number, along with other attributes, including biometrics, are submitted to the Central Identities Data Repository (CIDR) for its verification on the basis of information or data or documents available with it. UIDAI will provide an online service to support this process. Aadhaar authentication service only responds with a yes/no and no personal identity information is returned as part of the response. Unlike enrolment, which is typically a one-time process, authentication may be done many times for the resident at various points in his/her life to assert the identity of that resident. UIDAI, Page 3 of 67
4 Aadhaar Biometrics SDK API 1.2 Target Audience and Pre-Requisites This document is intended for vendors and developers who are developing biometric algorithm libraries implementing fingerprint, face, and iris matching, template extraction, and related functionality that can work with Aadhaar authentication and other related systems. Before reading this document, readers are highly encouraged to read the following documents to understand the overall system: 1. UIDAI Strategy Overview - w-001.pdf 2. The Biometrics Standards Committee Report - ort.pdf 3. Role of Biometric Technology in Aadhaar Enrolment - aadhaar_jan21_2012.pdf 4. Role of Biometric Technology in Aadhaar Authentication: Detailed Report - ion_ pdf 1.3 Biometric SDK API specification provide a single unified interface across multiple modalities (face, fingerprint, and iris) for SDK developers to expose their functionality to various modules of Aadhaar system Purpose of the Common API This common biometric SDK API specification is in Java and provides the following advantages: 1. Vendor neutrality Aadhaar system is implemented using open standards and standard APIs to ensure that all components across the system are neutral to proprietary and vendor specific features. 2. Interoperability To allow various systems to interoperate in a seamless fashion it is critical that standard interfaces are used. This allows common data format definitions, protocols across the components that expose similar functionality. 3. Use of best-of-breed algorithms An open API allows best of breed algorithms to be used for special purposes. For example, if one fingerprint algorithm works well for old age people, and another one for younger people, a common API is required to dynamically choose and use one algorithm based on the input. 4. Plug-n-play capability When multiple modalities and algorithms are used, for true plug-n-play capability, common API and discovery mechanism is required. UIDAI, Page 4 of 67
5 Aadhaar Biometrics SDK API Using this API, SDK developers may expose support for one or many modalities. For example, an SDK developer specializing in fingerprint algorithms may choose to implement only fingerprint modality support while some other SDK may provide support for fingerprint and iris Functional Requirements At a high level, there are two major components that need to be exposed via this API from within the SDK: 1. Quality Check and Segmentation Engine (IQSSEngine interface under the package in.gov.uidai.qssitv.spi) This interface is meant to expose quality check, segmentation, and sequencing functionality. 2. Extraction and Matching Engine (IITVEngine interface under the package in.gov.uidai.qssitv.spi) This interface is meant to expose extraction and matching functionality. Both these interfaces (IQSSEngine and IITVEngine) extend IModalitySupport interface that allow SDK developers to declare which modality they have implemented. When SDK is used through this common API within Aadhaar system, support for the modality is decided through that interface. Developers who are writing SDK implementation should implement both IQSSEngine and IITVEngine for the modality (face, fingerprint, iris) they want to support within their SDK Technical Requirements It is important to note that when implementing an SDK that complies with this API, following aspects must be taken care of to ensure scalability, interoperability, and manageability: 1. Thread Safe SDK implementation must be thread safe to ensure multithreaded applications can embed the SDK without functional or technical issues and should continue to run correctly and reliably on large scale. Aadhaar application modules are built in a multi-threaded fashion for handling scalability on multi-core machines. 2. Statelessness All SDK functionality (except for insert/identify operation) within interface should be stateless in the sense that none of those method calls should result in any state being maintained within the SDK. This is critical to ensure that when insert/identity operations are not used, a single instance (singleton) of the engine can be used across threads to handle large scale. 3. Small Footprint It is critical that SDK memory footprint be as small as possible to be able to handle scalability especially when multiple instances of the engine are used within the same process. 4. Multi-platform Support Aadhaar system is built on Java and support multiple platforms such as Linux and Windows. Since SDK will be used as an embedded mode within these application modules, SDK itself should be tested and certified on multiple platforms. Currently, it is required that SDK supports Linux 32-bit and 64-bit, Windows 32-bit and 64-bit on x86 architecture. 5. Linear Scalability SDK implementation will be used from single machine to 100 s of machines running multi-threaded application to handle 100 s of million UIDAI, Page 5 of 67
6 Aadhaar Biometrics SDK API matching calls. That means SDK should be built to ensure linear scale when going from one machine to several. 6. No Data store SDK should not mandate any persistent data store for storing data. It is expected that data is stored and managed externally by the application using the SDK. For SDK configuration, it may use an embedded data store or configuration files. In 7. No External Dependencies Since Aadhaar applications run on a production network isolated from Internet and is secure, it is essential that SDK does not have any dependency on any external resources outside the machine in which it is running. Any requirements for Internet connection, other server access, etc. must be eliminated. 8. Multi-level Logging Support Since SDK is an embedded component of a larger application, it is absolutely necessary that SDK exposes various log levels to be able to troubleshoot and detect issues in production. Typical log levels are Error, Warning, Info, Debug, etc. and in production it is always set as Error. As and when necessary, these log levels can be adjusted without shutting down servers to increase the log information. 1.4 Further Reading Detail Java API specification is provided in the Appendix of this document. All updates and further developer support will be through the developer portal. For developing an SDK fully complying with this API specification, developers should download the latest Java class files and documentation from UIDAI, Page 6 of 67
7 Aadhaar Biometrics SDK API 2. Appendix Java Documentation Package Summary in.gov.uidai.qssitv in.gov.uidai.qssitv.model in.gov.uidai.qssitv.spi This package comprise of general utility classes that wrap various SDK functionality. This package comprise of classes, interfaces and enumerated data types that together constitute the input and output data model to the QSS and ITV engines. This package defines the interfaces that must be implemented by third-party providers to support the features of Quality, Segmentation, Sequencing, Identification, Templating and Verification. 2.1 Package in.gov.uidai.qssitv Class Summary Qssitv The global facade to retrieve quality, sequencing, segmentation and templates from biometric data and perform identification (1:n) and verification (1:1) of biometric records. Class Qssitv in.gov.uidai.qssitv java.lang.object in.gov.uidai.qssitv.qssitv public class Qssitv extends Object The global facade to retrieve quality, sequencing, segmentation and templates from biometric data and perform identification (1:n) and verification (1:1) of biometric records. Method Summary void clearrecords() byte[] convertiso(byte[] input, FormatType type) List<BiometricTemplate> getfacetemplate(byte[] input, boolean iso) UIDAI, Page 7 of 67
8 Aadhaar Biometrics SDK API List<BiometricTemplate> getfingertemplate(byte[] input, List<BiometricPosition> missingfingers, int age, boolean iso) static Qssitv getinst() List<BiometricTemplate> getiristemplate(byte[] input, boolean iso) FaceQSS getqssdataforface(byte[] input, List<LandMark> landmarks) FingerprintQSS getqssdataforfingerprint(byte[] input, List<BiometricPosition> missingfingers) List<IrisQSS> getqssdataforiris(byte[] input) Map<String,Double> identifyface(list<biometrictemplate> facerecords, double threshold) Map<String,Double> identifyfinger(list<biometrictemplate> fingerrecords, int age, double threshold) Map<String,Double> identifyiris(list<biometrictemplate> irisrecords, double threshold) BiometricError insertfacerecord(string encounterid, List<BiometricTemplate> facerecords) BiometricError insertfingerrecord(string encounterid, List<BiometricTemplate> fingerrecords) BiometricError insertirisrecord(string encounterid, List<BiometricTemplate> irisrecords) void register(iitvengine engine) void register(iqssengine engine) Double verifyface(list<biometrictemplate> probefacerecord, List<BiometricTemplate> galleryfacerecord) Double verifyfinger(list<biometrictemplate> probefingerrecord, List<BiometricTemplate> galleryfingerrecord) Double verifyiris(list<biometrictemplate> probeirisrecord, List<BiometricTemplate> galleryirisrecord) Method Detail getinst public static Qssitv getinst() register public synchronized void register(iqssengine engine) register public synchronized void register(iitvengine engine) getqssdataforface public FaceQSS getqssdataforface(byte[] input, List<LandMark> landmarks) UIDAI, Page 8 of 67
9 Aadhaar Biometrics SDK API getqssdataforfingerprint public FingerprintQSS getqssdataforfingerprint(byte[] input, List<BiometricPosition> missingfinge rs) getqssdataforiris public List<IrisQSS> getqssdataforiris(byte[] input) convertiso public byte[] convertiso(byte[] input, FormatType type) getfingertemplate public List<BiometricTemplate> getfingertemplate(byte[] input, List<BiometricPosition> missingfin gers, int age, boolean iso) getfacetemplate public List<BiometricTemplate> getfacetemplate(byte[] input, boolean iso) getiristemplate public List<BiometricTemplate> getiristemplate(byte[] input, boolean iso) insertfingerrecord public BiometricError insertfingerrecord(string encounterid, List<BiometricTemplate> fingerrecords) insertirisrecord public BiometricError insertirisrecord(string encounterid, List<BiometricTemplate> irisrecords) insertfacerecord public BiometricError insertfacerecord(string encounterid, List<BiometricTemplate> facerecords) UIDAI, Page 9 of 67
10 Aadhaar Biometrics SDK API identifyiris public Map<String,Double> identifyiris(list<biometrictemplate> irisrecords, double threshold) identifyface public Map<String,Double> identifyface(list<biometrictemplate> facerecords, double threshold) identifyfinger public Map<String,Double> identifyfinger(list<biometrictemplate> fingerrecords, int age, double threshold) verifyfinger public Double verifyfinger(list<biometrictemplate> probefingerrecord, List<BiometricTemplate> galleryfingerrecord) verifyiris public Double verifyiris(list<biometrictemplate> probeirisrecord, List<BiometricTemplate> galleryirisrecord) verifyface public Double verifyface(list<biometrictemplate> probefacerecord, List<BiometricTemplate> galleryfacerecord) clearrecords public void clearrecords() UIDAI, Page 10 of 67
11 2.2 Package in.gov.uidai.qssitv.model This package comprise of classes, interfaces and enumerated data types that together constitute the input and output data model to the QSS and ITV engines. See: Description Class Summary BiometricError BiometricTemplate FaceQSS FaceQualityFeedback FingerprintQSS This class encapsulates quality, sequencing and segmentation data pertaining to photograph of a human face. This class encapsulates the output quality, sequencing and segmentation data for a slap image, as returned by an SDK. FingerprintQualityFeedback FingerSegment IrisQSS IrisQualityFeedback TODO Enter javadoc comments for this class. LandMark Enum Summary BiometricPosition Compliance FaceQualityAttribute FingerprintQualityAttribute FormatType IrisQualityAttribute LandMarkType This enum lists the possible values of Biometric Position for the various biometrics. Provides an enumeration of compliance values. Enumerates the list of parameters against which a evaluation for face quality is performed. Enumerates the list of parameters against which a evaluation for fingerprint quality is performed. Enumerates the target image encoding within ISO packets after conversion by the QSS engine. Enumerates the list of parameters against which a evaluation for iris quality is performed.
12 Class BiometricError in.gov.uidai.qssitv.model java.lang.object in.gov.uidai.qssitv.model.biometricerror public class BiometricError extends Object Field Summary static INCORRECT_ISO_FORMAT double Indicates that the ISO coming into the SDK is not compliant with the standard ISO format. static SDK_ERROR double Indicates that the SDK could not process this request (typically a Verify). Constructor Summary BiometricError() Method Summary String geterrormessage() void seterrormessage(string message) Field Detail SDK_ERROR public static double SDK_ERROR Indicates that the SDK could not process this request (typically a Verify). This is also the "default" code if the SDK is not sure of the cause of the error. INCORRECT_ISO_FORMAT public static double INCORRECT_ISO_FORMAT Indicates that the ISO coming into the SDK is not compliant with the standard ISO format. Constructor Detail BiometricError public BiometricError() UIDAI, Page 12 of 67
13 Method Detail seterrormessage public void seterrormessage(string message) geterrormessage public String geterrormessage() Enum BiometricPosition in.gov.uidai.qssitv.model java.lang.object java.lang.enum<biometricposition> in.gov.uidai.qssitv.model.biometricposition All Implemented Interfaces: Comparable<BiometricPosition>, Serializable public enum BiometricPosition extends Enum<BiometricPosition> This enum lists the possible values of Biometric Position for the various biometrics. "UNKNOWN" is the default value if no position is specified. See Also: FingerSegment.setFingerPosition(BiometricPosition) Enum Constant Summary BOTH_IRIS BOTH_THUMBS FACE LEFT_INDEX LEFT_IRIS LEFT_LITTLE LEFT_MIDDLE LEFT_RING LEFT_SLAP LEFT_THUMB RIGHT_INDEX UIDAI, Page 13 of 67
14 RIGHT_IRIS RIGHT_LITTLE RIGHT_MIDDLE RIGHT_RING RIGHT_SLAP RIGHT_THUMB UNKNOWN Method Summary static BiometricPosition String tostring() static values() BiometricPosition[] valueof(string name) Enum Constant Detail UNKNOWN public static final BiometricPosition UNKNOWN RIGHT_THUMB public static final BiometricPosition RIGHT_THUMB RIGHT_INDEX public static final BiometricPosition RIGHT_INDEX RIGHT_MIDDLE public static final BiometricPosition RIGHT_MIDDLE RIGHT_RING public static final BiometricPosition RIGHT_RING RIGHT_LITTLE public static final BiometricPosition RIGHT_LITTLE UIDAI, Page 14 of 67
15 LEFT_THUMB public static final BiometricPosition LEFT_THUMB LEFT_INDEX public static final BiometricPosition LEFT_INDEX LEFT_MIDDLE public static final BiometricPosition LEFT_MIDDLE LEFT_RING public static final BiometricPosition LEFT_RING LEFT_LITTLE public static final BiometricPosition LEFT_LITTLE BOTH_THUMBS public static final BiometricPosition BOTH_THUMBS RIGHT_SLAP public static final BiometricPosition RIGHT_SLAP LEFT_SLAP public static final BiometricPosition LEFT_SLAP RIGHT_IRIS public static final BiometricPosition RIGHT_IRIS LEFT_IRIS public static final BiometricPosition LEFT_IRIS UIDAI, Page 15 of 67
16 BOTH_IRIS public static final BiometricPosition BOTH_IRIS FACE public static final BiometricPosition FACE Method Detail values public static BiometricPosition[] values() valueof public static BiometricPosition valueof(string name) tostring public String tostring() Overrides: tostring in class Enum<E extends Enum<E>> Class BiometricTemplate in.gov.uidai.qssitv.model java.lang.object in.gov.uidai.qssitv.model.biometrictemplate All Implemented Interfaces: Serializable public class BiometricTemplate extends Object implements Serializable Constructor Summary BiometricTemplate() UIDAI, Page 16 of 67
17 Method Summary BiometricPosition getbiometricposition() byte[] getgallerytemplate() byte[] getprobetemplate() void setbiometricposition(biometricposition pos) void setgallerytemplate(byte[] tpl) void setprobetemplate(byte[] tpl) String tostring() Constructor Detail BiometricTemplate public BiometricTemplate() Method Detail getgallerytemplate public byte[] getgallerytemplate() setgallerytemplate public void setgallerytemplate(byte[] tpl) getprobetemplate public byte[] getprobetemplate() setprobetemplate public void setprobetemplate(byte[] tpl) getbiometricposition public BiometricPosition getbiometricposition() setbiometricposition public void setbiometricposition(biometricposition pos) UIDAI, Page 17 of 67
18 tostring public String tostring() Overrides: tostring in class Object Enum Compliance in.gov.uidai.qssitv.model java.lang.object java.lang.enum<compliance> in.gov.uidai.qssitv.model.compliance All Implemented Interfaces: Comparable<Compliance>, Serializable public enum Compliance extends Enum<Compliance> Provides an enumeration of compliance values. This object is used to hold the overall status of the quality feedback for a given quality attribute, as returned by the SDK. See Also: for the list of attributes for which this Compliance is returned., where this object is returned Enum Constant Summary BELOW_THRESHOLD Indicates that the QualityAttribute score for the given attribute is below the normal/expected threshold (according to the SDK). ERROR Indicates that the QualityAttribute score for the given biometric could not be calculated by the SDK, due to any reason. NOT_APPLIED This is the default value for quality attributes which could not be filled with a meaningful quality value by the SDK. OK OPTIONAL Indicates that the QualityAttribute score for the given attribute is fine, i.e. This value indicates that the corresponding quality check may return a score, but the SDK will not pass a judgment in terms of OK or ERROR, since the check is optional. UIDAI, Page 18 of 67
19 Method Summary int getvalue() String tostring() static Compliance static Compliance static values() Compliance[] valueof(int valuea) valueof(string name) Enum Constant Detail OK public static final Compliance OK Indicates that the QualityAttribute score for the given attribute is fine, i.e. that the SDK could calculate the score, and that the value thereof is higher than the threshold the SDK determines to be an "ok" score. ERROR public static final Compliance ERROR Indicates that the QualityAttribute score for the given biometric could not be calculated by the SDK, due to any reason. This code is a catch-all for reporting any error, be it an SDK-internal error or if the quality of the attribute is lower than the threshold as determined by the SDK. Over time, the latter is expected to be indicated by the BELOW_THRESHOLD(4) code below. OPTIONAL public static final Compliance OPTIONAL This value indicates that the corresponding quality check may return a score, but the SDK will not pass a judgment in terms of OK or ERROR, since the check is optional. It is up to the calling application to decide how to interpret this value (e.g. to decide that a score above 50 is an OK, else ERROR). This is used for attributes that are value-additions provided by the SDK above and beyond the core set of checks mandated by the SDK API. See Also: documentation which specifies each attribute as mandatory or optional (for fingerprints). UIDAI, Page 19 of 67
20 NOT_APPLIED public static final Compliance NOT_APPLIED This is the default value for quality attributes which could not be filled with a meaningful quality value by the SDK. e.g. in cases when the quality checks could not be performed because of some early error such as corrupt input data. BELOW_THRESHOLD public static final Compliance BELOW_THRESHOLD Indicates that the QualityAttribute score for the given attribute is below the normal/expected threshold (according to the SDK). This code has been added to be able to distinguish between an SDK internal error (which should return the ERROR(1) code, from this one where the processing happened correctly but the attribute value is "too low" in the opinion of SDK. Method Detail values public static Compliance[] values() valueof public static Compliance valueof(string name) getvalue public int getvalue() valueof public static Compliance valueof(int valuea) tostring public String tostring() Overrides: tostring in class Enum<E extends Enum<E>> UIDAI, Page 20 of 67
21 Class FaceQSS in.gov.uidai.qssitv.model java.lang.object in.gov.uidai.qssitv.model.faceqss All Implemented Interfaces: Serializable public class FaceQSS extends Object implements Serializable This class encapsulates quality, sequencing and segmentation data pertaining to photograph of a human face. Constructor Summary FaceQSS() Method Summary void addlandmark(landmark landmark) byte[] getfullfrontalface() byte[] getfullfrontalfacefordisplay() List<LandMark> getlandmarklist() String getoverallcomments() Compliance getoverallcompliance() double getoverallscore() List<FaceQualityFeedback> getqualityfeedback() void setfullfrontalface(byte[] data) void setfullfrontalfacefordisplay(byte[] data) void setoverallcomments(string comments) void setoverallcompliance(compliance compliance) void setoverallscore(double score) void setqualityfeedback(list<facequalityfeedback> feedback) Constructor Detail FaceQSS public FaceQSS() UIDAI, Page 21 of 67
22 Method Detail getfullfrontalface public byte[] getfullfrontalface() setfullfrontalface public void setfullfrontalface(byte[] data) getfullfrontalfacefordisplay public byte[] getfullfrontalfacefordisplay() setfullfrontalfacefordisplay public void setfullfrontalfacefordisplay(byte[] data) getoverallcomments public String getoverallcomments() setoverallcomments public void setoverallcomments(string comments) getoverallcompliance public Compliance getoverallcompliance() setoverallcompliance public void setoverallcompliance(compliance compliance) getoverallscore public double getoverallscore() setoverallscore public void setoverallscore(double score) UIDAI, Page 22 of 67
23 getqualityfeedback public List<FaceQualityFeedback> getqualityfeedback() setqualityfeedback public void setqualityfeedback(list<facequalityfeedback> feedback) getlandmarklist public List<LandMark> getlandmarklist() addlandmark public void addlandmark(landmark landmark) Enum FaceQualityAttribute in.gov.uidai.qssitv.model java.lang.object java.lang.enum<facequalityattribute> in.gov.uidai.qssitv.model.facequalityattribute All Implemented Interfaces: Comparable<FaceQualityAttribute>, Serializable public enum FaceQualityAttribute extends Enum<FaceQualityAttribute> Enumerates the lsist of parameters against which a evaluation for face quality is performed. The range of values for most attributes is [0..100], since these values are meant to be indicative of the _judgement_ by an SDK on that quality attribute. The actual "raw" / internal score calculated by an SDK needs to be assessed by the SDK, and the client needs to be returned a value indicating how good (i.e. closer to 100) or bad (closer to 0) that value is judged to be (to the SDK). UIDAI, Page 23 of 67
24 Enum Constant Summary BACKGROUND_TEXTURE Score of the Background texture, i.e. EYE_DISTANCE Checks the Eye distance (in pixels) against limits Interpupillary Distance (IPD, EYE_DISTANCE_RATIO This is the proportion of the eye distance to the image width. FACE_GRAY_VALUES Checks the mean and the standard deviation of all gray values of the face area against limits. This is a measure of illumination on the face. FACENESS Measures how close the image is to a human face. FACIAL_AREA_SHADOW Indicates the amount of shadow cast on the face. GLASSES_HEAVY_FRAME Checks for heavy framed spectacles by analyzing the thickness of the spectacle frame if any were detected. GLASSES_REFLECTION Checks for reflection off spectacle lenses, using the glass reflection level if spectacles were detected. GLASSES_SUNGLASSES Analyzes the glass/lens colour to check for sunglasses. HEAD_POSITION_VERTICAL Vertical position of the detected face within the image. HORIZONTALLY_CENTERED Checks the deviation of the horizontal face center from the horizontal image center. UIDAI, Page 24 of 67
25 ILLUMINATION Measure of uniformity of lighting on the face. IMAGE_RATIO Image ratio as per the full frontal ICAO standards. NUMBER_OF_FACES Provides an alert if more than 1 face exist(s) in the image. PADDING How much padding i.e. POSE_YAW Amount of head rotation angle in a vertical direction Optional attribute Else set the appropriate ERROR/BELOW_THRESHOLD/... RED_EYES Check for red eye within the detected image. ROLL_ANGLE In-plane rotation of the face in the image. SCALING How much scaling was required. Method Summary static FaceQualityAttribute static FaceQualityAttribute int getvalue() String tostring() static values() FaceQualityAttribute[] valueof(int valuea) valueof(string name) UIDAI, Page 25 of 67
26 Enum Constant Detail FACE_GRAY_VALUES public static final FaceQualityAttribute FACE_GRAY_VALUES Checks the mean and the standard deviation of all gray values of the face area against limits. This is a measure of illumination on the face. Purpose: To detect over-saturated or darker image and ask for recapture. Mandatory attribute FACENESS public static final FaceQualityAttribute FACENESS Measures how close the image is to a human face. Optional attribute EYE_DISTANCE public static final FaceQualityAttribute EYE_DISTANCE Checks the Eye distance (in pixels) against limits Interpupillary Distance (IPD, Purpose: To transform the face image to same reference frame Mandatory attribute EYE_DISTANCE_RATIO public static final FaceQualityAttribute EYE_DISTANCE_RATIO This is the proportion of the eye distance to the image width. Detects faces which are too close to or too far away from the camera. Mandatory attribute UIDAI, Page 26 of 67
27 ROLL_ANGLE public static final FaceQualityAttribute ROLL_ANGLE In-plane rotation of the face in the image. Rotation is calculated as the angle formed by the ideal horizontal line and the line connecting two eyes. Indicates the pose. e.g. A straight face (in-plane rotation angle of zero) could have a score of 100. Mandatory attribute ILLUMINATION public static final FaceQualityAttribute ILLUMINATION Measure of uniformity of lighting on the face. Purpose: During matching and also to reject a sample with low illumination Mandatory attribute PADDING public static final FaceQualityAttribute PADDING How much padding i.e. extension of the source image by duplicating the boundary rows and columns, was done. Indicates the ratio of the head width to the image width. Measurement: Number of pixels duplicated Mandatory attribute SCALING public static final FaceQualityAttribute SCALING How much scaling was required, i.e. if the image needed to be enlarged to create the standard image. Mandatory attribute UIDAI, Page 27 of 67
28 FACIAL_AREA_SHADOW public static final FaceQualityAttribute FACIAL_AREA_SHADOW Indicates the amount of shadow cast on the face. Optional attribute BACKGROUND_TEXTURE public static final FaceQualityAttribute BACKGROUND_TEXTURE Score of the Background texture, i.e. a background noise score. This is a check for pattern edges that may affect the face detection process. Mandatory attribute Measurement: Can be measured using the different positions where the face detection algorithm gave high responses. HORIZONTALLY_CENTERED public static final FaceQualityAttribute HORIZONTALLY_CENTERED Checks the deviation of the horizontal face center from the horizontal image center. Mandatory attribute IMAGE_RATIO public static final FaceQualityAttribute IMAGE_RATIO Image ratio as per the full frontal ICAO standards. Checks the width to height ratio of the image. Mandatory attribute NUMBER_OF_FACES public static final FaceQualityAttribute NUMBER_OF_FACES UIDAI, Page 28 of 67
29 Provides an alert if more than 1 face exist(s) in the image. Optional attribute RED_EYES public static final FaceQualityAttribute RED_EYES Check for red eye within the detected image. Either one eye or both eyes being red is taken to be a red-eye image. More red the eye(s), higher the score. Optional attribute HEAD_POSITION_VERTICAL public static final FaceQualityAttribute HEAD_POSITION_VERTICAL Vertical position of the detected face within the image. This position is determined by the distance from the image bottom to the middle point of two eyes. Mandatory attribute GLASSES_SUNGLASSES public static final FaceQualityAttribute GLASSES_SUNGLASSES Analyzes the glass/lens colour to check for sunglasses. Score of 0 indicates no sunglasses. Mandatory attribute GLASSES_REFLECTION public static final FaceQualityAttribute GLASSES_REFLECTION Checks for reflection off spectacle lenses, using the glass reflection level if spectacles were detected. Mandatory attribute UIDAI, Page 29 of 67
30 GLASSES_HEAVY_FRAME public static final FaceQualityAttribute GLASSES_HEAVY_FRAME Checks for heavy framed spectacles by analyzing the thickness of the spectacle frame if any were detected. Optional attribute POSE_YAW public static final FaceQualityAttribute POSE_YAW Amount of head rotation angle in a vertical direction Optional attribute Method Detail values public static FaceQualityAttribute[] values() valueof public static FaceQualityAttribute valueof(string name) getvalue public int getvalue() valueof public static FaceQualityAttribute valueof(int valuea) UIDAI, Page 30 of 67
31 tostring public String tostring() Overrides: tostring in class Enum<E extends Enum<E>> Class FaceQualityFeedback in.gov.uidai.qssitv.model java.lang.object in.gov.uidai.qssitv.model.facequalityfeedback public class FaceQualityFeedback extends Object Constructor Summary FaceQualityFeedback() Method Summary String getcomments() Compliance getcompliance() FaceQualityAttribute getqualityattribute() double getscore() void setcomments(string comments) void setcompliance(compliance compliance) void setqualityattribute(facequalityattribute qa) void setscore(double score) Constructor Detail FaceQualityFeedback public FaceQualityFeedback() Method Detail getcomments public String getcomments() UIDAI, Page 31 of 67
32 setcomments public void setcomments(string comments) getcompliance public Compliance getcompliance() setcompliance public void setcompliance(compliance compliance) getqualityattribute public FaceQualityAttribute getqualityattribute() setqualityattribute public void setqualityattribute(facequalityattribute qa) getscore public double getscore() setscore public void setscore(double score) Class FingerprintQSS in.gov.uidai.qssitv.model java.lang.object in.gov.uidai.qssitv.model.fingerprintqss public class FingerprintQSS extends Object This class encapsulates the output quality, sequencing and segmentation data for a slap image, as returned by an SDK. UIDAI, Page 32 of 67
33 See Also: The overall scores across all the finger segments are reported via the Overall Score attribute. The results for each of the quality attributes (e.g. Centering, Wetness...) are returned in the FingerprintQualityFeedback list. The fingersegments array returns the positions detected for each of the segments (fingers) detected in the slap. Any error or quality issue is flagged via the Compliance object. Constructor Summary FingerprintQSS() Method Summary List<FingerSegment> getfingersegments() int gethandedness() String getoverallcomments() Compliance getoverallcompliance() double getoverallconfidence() double getoverallscore() List<FingerprintQualityFeedback> getqualityfeedback() void setfingersegments(list<fingersegment> segments) void sethandedness(int value) void setoverallcomments(string comments) void setoverallcompliance(compliance compliance) void setoverallconfidence(double confidence) void setoverallscore(double score) void setqualityfeedback(list<fingerprintqualityfeedback> feedback) Constructor Detail FingerprintQSS public FingerprintQSS() Method Detail getoverallcomments public String getoverallcomments() setoverallcomments public void setoverallcomments(string comments) UIDAI, Page 33 of 67
34 getoverallcompliance public Compliance getoverallcompliance() setoverallcompliance public void setoverallcompliance(compliance compliance) getoverallscore public double getoverallscore() setoverallscore public void setoverallscore(double score) getqualityfeedback public List<FingerprintQualityFeedback> getqualityfeedback() setqualityfeedback public void setqualityfeedback(list<fingerprintqualityfeedback> feedback) getoverallconfidence public double getoverallconfidence() setoverallconfidence public void setoverallconfidence(double confidence) gethandedness public int gethandedness() sethandedness public void sethandedness(int value) UIDAI, Page 34 of 67
35 getfingersegments public List<FingerSegment> getfingersegments() setfingersegments public void setfingersegments(list<fingersegment> segments) Enum FingerprintQualityAttribute in.gov.uidai.qssitv.model java.lang.object java.lang.enum<fingerprintqualityattribute> in.gov.uidai.qssitv.model.fingerprintqualityattribute All Implemented Interfaces: Comparable<FingerprintQualityAttribute>, Serializable public enum FingerprintQualityAttribute extends Enum<FingerprintQualityAttribute> Enumerates the list of parameters against which a evaluation for fingerprint quality is performed. See Also: which holds the feedback for each of these attributes. The range of values for most attributes is [0..100], since these values are meant to be indicative of the _judgement_ by an SDK on that quality attribute. The actual "raw" / internal score calculated by an SDK needs to be assessed by the SDK, and the client needs to be returned a value indicating how good (i.e. closer to 100) or bad (closer to 0) that value is judged to be (to the SDK). Enum Constant Summary FINGER_CONTACT_AREA Indicates the coverage of total finger area within the captured image, i.e. FINGER_GOOD_AREA Indicates the nature of finger contact area within the captured image. FINGER_MINUTIA_COUNT Indicates the count of finger minutia extracted from the captured image. UIDAI, Page 35 of 67
36 FINGER_MISMATCH Indicates a mismatch between the number of segmented fingers and expected fingers. FINGER_PROPREIETARY_QUALITY Indicates the quality of a captured image on a proprietary scale. SLAP_CENTERING Indicates how close the slap position is to the centre of the image. SLAP_DRYNESS Indicates if the fingers (in slap position) on the fingerprint scanner were dry during image acquisition. SLAP_PLACEMENT Indicates the placement of the slap position within the image. SLAP_PRESS_HEAVY Pressure measurement: too much pressure was applied on the fingerprint scanner during image acquisition. SLAP_PRESS_LIGHT Indicates if too less pressure has been applied on the fingerprint scanner during image acquisition. SLAP_WETNESS Indicates if the fingers (in slap position) on the fingerprint scanner were wet during image acquisition. Method Summary static FingerprintQualityAttribute static FingerprintQualityAttribute int getvalue() String tostring() static values() FingerprintQualityAttribute[] valueof(int valuea) valueof(string name) Enum Constant Detail SLAP_PLACEMENT public static final FingerprintQualityAttribute SLAP_PLACEMENT UIDAI, Page 36 of 67
37 Indicates the placement of the slap position within the image. Measurement: distance of slap from the center of the image, also if fingerprints are crossing the platen. Purpose: indicator to recapture. Mandatory attribute FINGER_MISMATCH public static final FingerprintQualityAttribute FINGER_MISMATCH Indicates a mismatch between the number of segmented fingers and expected fingers. Mandatory attribute Range of normal return values: -3 to +3 [Compliance code: OK(0)] SLAP_PRESS_HEAVY public static final FingerprintQualityAttribute SLAP_PRESS_HEAVY Pressure measurement: too much pressure was applied on the fingerprint scanner during image acquisition. Mandatory attribute Range of normal return values: 0 to 100 [Compliance code: OK(0)] SLAP_PRESS_LIGHT public static final FingerprintQualityAttribute SLAP_PRESS_LIGHT Indicates if too less pressure has been applied on the fingerprint scanner during image acquisition. Mandatory attribute Range of normal return values: 0 to 100 [Compliance code: OK(0)] SLAP_CENTERING public static final FingerprintQualityAttribute SLAP_CENTERING Indicates how close the slap position is to the centre of the image. Mandatory attribute UIDAI, Page 37 of 67
38 SLAP_WETNESS public static final FingerprintQualityAttribute SLAP_WETNESS Indicates if the fingers (in slap position) on the fingerprint scanner were wet during image acquisition. Mandatory attribute SLAP_DRYNESS public static final FingerprintQualityAttribute SLAP_DRYNESS Indicates if the fingers (in slap position) on the fingerprint scanner were dry during image acquisition. Mandatory attribute FINGER_GOOD_AREA public static final FingerprintQualityAttribute FINGER_GOOD_AREA Indicates the nature of finger contact area within the captured image. Fidelity of the area. Or: The good area is the percentage of good cells within the contact cells. Measurement: may be measured as variation in power associated with different frequencies in a given fingerprint region. Mandatory attribute FINGER_CONTACT_AREA public static final FingerprintQualityAttribute FINGER_CONTACT_AREA Indicates the coverage of total finger area within the captured image, i.e. the quality of the contact with the surface. Mandatory attribute UIDAI, Page 38 of 67
39 FINGER_MINUTIA_COUNT public static final FingerprintQualityAttribute FINGER_MINUTIA_COUNT Indicates the count of finger minutia extracted from the captured image. No threshold will be checked for in the SDK, the SDK returns whatever Minutiae it finds. i.e. the Compliance will always be OK. Optional attribute FINGER_PROPREIETARY_QUALITY public static final FingerprintQualityAttribute FINGER_PROPREIETARY_QUALITY Indicates the quality of a captured image on a proprietary scale. i.e. indicates the Proprietary quality of this attribute. Optional attribute Method Detail values public static FingerprintQualityAttribute[] values() valueof public static FingerprintQualityAttribute valueof(string name) getvalue public int getvalue() valueof public static FingerprintQualityAttribute valueof(int valuea) UIDAI, Page 39 of 67
40 tostring public String tostring() Overrides: tostring in class Enum<E extends Enum<E>> Class FingerprintQualityFeedback in.gov.uidai.qssitv.model java.lang.object in.gov.uidai.qssitv.model.fingerprintqualityfeedback public class FingerprintQualityFeedback extends Object Constructor Summary FingerprintQualityFeedback() Method Summary String getcomments() Compliance getcompliance() FingerprintQualityAttribute getqualityattribute() double getscore() void setcomments(string comments) void setcompliance(compliance compliance) void setqualityattribute(fingerprintqualityattribute qa) void setscore(double score) Constructor Detail FingerprintQualityFeedback public FingerprintQualityFeedback() Method Detail getcomments public String getcomments() UIDAI, Page 40 of 67
41 setcomments public void setcomments(string comments) getcompliance public Compliance getcompliance() setcompliance public void setcompliance(compliance compliance) getqualityattribute public FingerprintQualityAttribute getqualityattribute() setqualityattribute public void setqualityattribute(fingerprintqualityattribute qa) getscore public double getscore() setscore public void setscore(double score) Class FingerSegment in.gov.uidai.qssitv.model java.lang.object in.gov.uidai.qssitv.model.fingersegment public class FingerSegment extends Object UIDAI, Page 41 of 67
42 Constructor Summary FingerSegment() Method Summary Point getbottomleft() Point getbottomright() BiometricPosition getfingerposition() Returns the position for this segment byte[] getimage() double getquality() Point gettopleft() Accessor method to retrieve the top-left point of the finger segment. Point gettopright() void setbottomleft(point pt) void setbottomright(point pt) void setfingerposition(biometricposition pos) Set the finger position of this segment to the specified position. void setimage(byte[] image) void setquality(double quality) void settopleft(point pt) Mutator method to set the top-left point of the finger segment. void settopright(point pt) Constructor Detail FingerSegment public FingerSegment() Method Detail gettopleft public Point gettopleft() Accessor method to retrieve the top-left point of the finger segment. Returns: the top-left point of the finger segment. settopleft public void settopleft(point pt) Mutator method to set the top-left point of the finger segment. UIDAI, Page 42 of 67
43 Parameters: pt - the top-left point of the finger segment. gettopright public Point gettopright() settopright public void settopright(point pt) getbottomleft public Point getbottomleft() setbottomleft public void setbottomleft(point pt) getbottomright public Point getbottomright() setbottomright public void setbottomright(point pt) getfingerposition public BiometricPosition getfingerposition() Returns the position for this segment Returns: the specified BiometricPosition for this segment. See Also: setfingerposition(biometricposition) setfingerposition public void setfingerposition(biometricposition pos) Set the finger position of this segment to the specified position. UIDAI, Page 43 of 67
44 Parameters: pos - specifies the position to be set. Important note: If no position is specified (i.e. if this #setfingerposition method is not called) on a segment, the SDK needs to assume the default position, namely BiometricPosition.UNKNOWN as the position of this segment. getquality public double getquality() setquality public void setquality(double quality) getimage public byte[] getimage() setimage public void setimage(byte[] image) Enum FormatType in.gov.uidai.qssitv.model java.lang.object java.lang.enum<formattype> in.gov.uidai.qssitv.model.formattype All Implemented Interfaces: Comparable<FormatType>, Serializable public enum FormatType extends Enum<FormatType> Enumerates the target image encoding within ISO packets after conversion by the QSS engine. Enum Constant Summary BMP JPEG UIDAI, Page 44 of 67
45 JPEG2 PNG WSQ Method Summary static FormatType static FormatType int getvalue() static values() FormatType[] valueof(int valuea) valueof(string name) Enum Constant Detail JPEG public static final FormatType JPEG JPEG2 public static final FormatType JPEG2 PNG public static final FormatType PNG BMP public static final FormatType BMP WSQ public static final FormatType WSQ Method Detail values public static FormatType[] values() valueof public static FormatType valueof(string name) UIDAI, Page 45 of 67
46 getvalue public int getvalue() valueof public static FormatType valueof(int valuea) Class IrisQSS in.gov.uidai.qssitv.model java.lang.object in.gov.uidai.qssitv.model.irisqss public class IrisQSS extends Object Constructor Summary IrisQSS() Method Summary void addlandmark(landmark landmark) BiometricPosition geteyeposition() List<LandMark> getlandmarklist() String getoverallcomments() Compliance getoverallcompliance() double getoverallscore() List<IrisQualityFeedback> getqualityfeedback() void seteyeposition(biometricposition pos) void setoverallcomments(string comments) void setoverallcompliance(compliance compliance) void setoverallscore(double score) void setqualityfeedback(list<irisqualityfeedback> feedback) UIDAI, Page 46 of 67
47 Constructor Detail IrisQSS public IrisQSS() Method Detail getoverallcomments public String getoverallcomments() setoverallcomments public void setoverallcomments(string comments) getoverallcompliance public Compliance getoverallcompliance() setoverallcompliance public void setoverallcompliance(compliance compliance) getoverallscore public double getoverallscore() setoverallscore public void setoverallscore(double score) geteyeposition public BiometricPosition geteyeposition() seteyeposition public void seteyeposition(biometricposition pos) UIDAI, Page 47 of 67
48 getqualityfeedback public List<IrisQualityFeedback> getqualityfeedback() setqualityfeedback public void setqualityfeedback(list<irisqualityfeedback> feedback) getlandmarklist public List<LandMark> getlandmarklist() addlandmark public void addlandmark(landmark landmark) Enum IrisQualityAttribute in.gov.uidai.qssitv.model java.lang.object java.lang.enum<irisqualityattribute> in.gov.uidai.qssitv.model.irisqualityattribute All Implemented Interfaces: Comparable<IrisQualityAttribute>, Serializable public enum IrisQualityAttribute extends Enum<IrisQualityAttribute> Enumerates the list of parameters against which a evaluation for iris quality is performed. The range of values for most attributes is [0..100], since these values are meant to be indicative of the _judgement_ by an SDK on that quality attribute. The actual "raw" / internal score calculated by an SDK needs to be assessed by the SDK, and the client needs to be returned a value indicating how good (i.e. closer to 100) or bad (closer to 0) that value is judged to be (to the SDK). UIDAI, Page 48 of 67
49 Enum Constant Summary HORIZONTAL_MARGIN Checks the minimum distance of the iris boundary to the left/right image boundary against limits. IRIS_CHARACTER Indicates the degree to which the anatomy and presentation (visibility) of the iris facilitates template creation Mandatory attribute Else set the appropriate ERROR/BELOW_THRESHOLD/... IRIS_FIDELITY Measures the iris image fidelity aspects such as focus, lighting, and exposure Mandatory attribute Else set the appropriate ERROR/BELOW_THRESHOLD/... IRIS_GAZE_ALIGNMENT Measures how close the eye s gaze is to the ideal on-axis direction. IRIS_MOTION Indicates the extent of Motion Blur. IRISNESS Meausures how close is the eye to a real (human) eye. PUPIL_CONSTRICTION Ratio of iris to pupil. VERTICAL_MARGIN Checks the minimum distance of the iris boundary to the top/bottom image boundary against limits. Method Summary static IrisQualityAttribute static IrisQualityAttribute int getvalue() String tostring() valueof(int valuea) valueof(string name) UIDAI, Page 49 of 67
50 static values() IrisQualityAttribute[] Enum Constant Detail IRISNESS public static final IrisQualityAttribute IRISNESS Meausures how close is the eye to a real (human) eye. Optional attribute IRIS_FIDELITY public static final IrisQualityAttribute IRIS_FIDELITY Measures the iris image fidelity aspects such as focus, lighting, and exposure of the image Mandatory attribute IRIS_CHARACTER public static final IrisQualityAttribute IRIS_CHARACTER Indicates the degree to which the anatomy and presentation (visibility) of the iris facilitates template creation Mandatory attribute PUPIL_CONSTRICTION public static final IrisQualityAttribute PUPIL_CONSTRICTION Ratio of iris to pupil. Mandatory attribute UIDAI, Page 50 of 67
51 HORIZONTAL_MARGIN public static final IrisQualityAttribute HORIZONTAL_MARGIN Checks the minimum distance of the iris boundary to the left/right image boundary against limits. Optional attribute VERTICAL_MARGIN public static final IrisQualityAttribute VERTICAL_MARGIN Checks the minimum distance of the iris boundary to the top/bottom image boundary against limits. Optional attribute IRIS_GAZE_ALIGNMENT public static final IrisQualityAttribute IRIS_GAZE_ALIGNMENT Measures how close the eye s gaze is to the ideal on-axis direction. Looking directly into the camera increases the score. Optional attribute IRIS_MOTION public static final IrisQualityAttribute IRIS_MOTION Indicates the extent of Motion Blur. Mandatory attribute Method Detail values public static IrisQualityAttribute[] values() UIDAI, Page 51 of 67
52 valueof public static IrisQualityAttribute valueof(string name) getvalue public int getvalue() valueof public static IrisQualityAttribute valueof(int valuea) tostring public String tostring() Overrides: tostring in class Enum<E extends Enum<E>> Class IrisQualityFeedback in.gov.uidai.qssitv.model java.lang.object in.gov.uidai.qssitv.model.irisqualityfeedback public class IrisQualityFeedback extends Object Constructor Summary IrisQualityFeedback() Method Summary String getcomments() Compliance getcompliance() IrisQualityAttribute getqualityattribute() double getscore() void setcomments(string comments) void setcompliance(compliance compliance) UIDAI, Page 52 of 67
53 void setqualityattribute(irisqualityattribute qa) void setscore(double score) Constructor Detail IrisQualityFeedback public IrisQualityFeedback() Method Detail getcomments public String getcomments() setcomments public void setcomments(string comments) getcompliance public Compliance getcompliance() setcompliance public void setcompliance(compliance compliance) getqualityattribute public IrisQualityAttribute getqualityattribute() setqualityattribute public void setqualityattribute(irisqualityattribute qa) getscore public double getscore() setscore public void setscore(double score) UIDAI, Page 53 of 67
54 Class LandMark in.gov.uidai.qssitv.model java.lang.object in.gov.uidai.qssitv.model.landmark public class LandMark extends Object Constructor Summary LandMark() Method Summary LandMarkType getlandmarktype() int getvalue() int getx() int gety() void setlandmarktype(landmarktype lmt) void setvalue(int val) void setx(int val) void sety(int val) String tostring() Constructor Detail LandMark public LandMark() Method Detail getlandmarktype public LandMarkType getlandmarktype() setlandmarktype public void setlandmarktype(landmarktype lmt) UIDAI, Page 54 of 67
55 getx public int getx() setx public void setx(int val) gety public int gety() sety public void sety(int val) getvalue public int getvalue() setvalue public void setvalue(int val) tostring public String tostring() Overrides: tostring in class Object Enum LandMarkType in.gov.uidai.qssitv.model java.lang.object java.lang.enum<landmarktype> in.gov.uidai.qssitv.model.landmarktype All Implemented Interfaces: Comparable<LandMarkType>, Serializable UIDAI, Page 55 of 67
56 public enum LandMarkType extends Enum<LandMarkType> Enum Constant Summary IRIS_CENTER IRIS_RADIUS LEFT_EYE RIGHT_EYE Method Summary static LandMarkType String tostring() static values() LandMarkType[] valueof(string name) Enum Constant Detail RIGHT_EYE public static final LandMarkType RIGHT_EYE LEFT_EYE public static final LandMarkType LEFT_EYE IRIS_RADIUS public static final LandMarkType IRIS_RADIUS IRIS_CENTER public static final LandMarkType IRIS_CENTER Method Detail values public static LandMarkType[] values() valueof public static LandMarkType valueof(string name) UIDAI, Page 56 of 67
57 tostring public String tostring() Overrides: tostring in class Enum<E extends Enum<E>> 2.3 Package in.gov.uidai.qssitv.spi This packages defines the interfaces that must be implemented by third-party providers to support the features of Quality, Segmentation, Sequencing, Identification, Templating and Verification. See: Description Interface Summary IITVEngine IModalitySupport IQSSEngine Definition of an ITV (Identification, Templating and Verification) engine to be implemented by third-party providers. Common behavior to ascertain the different biometric modalities supported by each engine type. Definition of a QSS (Quality, Segmentation and Sequencing) engine to be implemented by third-party providers. Package in.gov.uidai.qssitv.spi Description This packages defines the interfaces that must be implemented by third-party providers to support the features of Quality, Segmentation, Sequencing, Identification, Templating and Verification. The following guidelines must be adhered to while implementing these APIs: 1. Stateless All implementations must be stateless and should not have any session-like behaviour. 2. Thread-safe All implementations must be thread-safe and should be designed to work in a multi-threaded environment. In other words, API calls should not step on each other's memory space when invoked from multiple threads. 3. Singleton All implementations must be singleton and should not require creation of new instances for repeated uses. In other words, cost of invocation of the API should not involve cost of initialization of engine. A single instance of engine should be able to server multiple API calls simultaneously. 4. Independent All implementations should be independent of each other, and should be designed such that they can be selectively integrated into one or many host applications. Host application should be able to configure the engine to: o Enable and use only QSS or ITV or both engines. o In case of ITV, be able to enable and use only extraction API. be able to enable and use only verification API. UIDAI, Page 57 of 67
58 rr enable and use all APIs Insert, Identify, Template extraction and Verification. 5. Efficient All the APIs should be conservative in their usage of system resources, and should avoid unnecessary use of resources such as memory. 6. Light weight - Extraction and Verification engines (IITVEngine running in Extraction or Verification mode): o Small memory foot print. Base memory needed for Extraction and Verification engine should be around 100MB. o Memory efficient Each calls to the API should consume memory equal to or up to two times of the size of input parameters' size. 7. Fast response time for verification: IITVEngine will be used by Auth server 2.0 for biometric verification. Following are the expected response times for IITVEngine to perform biometric verification. o ~25 50 ms for single finger verification if position of finger is not known. o ~10ms for single finger verification if position of finger is known. o ~25ms for single iris verification. o ~50ms for face verification. Interface IITVEngine in.gov.uidai.qssitv.spi All Superinterfaces: IModalitySupport public interface IITVEngine extends IModalitySupport Definition of an ITV (Identification, Templating and Verification) engine to be implemented by third-party providers. Method Summary void clearrecords() Instructs the ITV engine to remove all previously entered biometric templates pertaining to fingerprint, face and iris. List<BiometricTemplate> getfacetemplate(byte[] input, boolean iso) Given the photograph of a resident, extract a list of biometric templates that can subsequently be used for identification and verification. List<BiometricTemplate> getfingertemplate(byte[] input, List<BiometricPosition> missingfingers, int age, boolean iso) Given a set of fingerprints for a resident, extract a list of biometric templates that can subsequently be used for identification and verification. List<BiometricTemplate> getiristemplate(byte[] input, boolean iso) Given the iris images of a resident, extract a list of biometric templates that can subsequently be used for identification and verification. Map<String,Double> identifyface(list<biometrictemplate> facerecords, double threshold) Performs a 1:N matching of a set of biometric templates pertaining to face against a gallery of templates. UIDAI, Page 58 of 67
59 Map<String,Double> identifyfinger(list<biometrictemplate> fingerrecords, int age, double threshold) Performs a 1:N matching of a set of biometric templates pertaining to one set of fingerprints against a gallery of templates. Map<String,Double> identifyiris(list<biometrictemplate> irisrecords, double threshold) Performs a 1:N matching of a set of biometric templates pertaining to one/two iris against a gallery of templates. BiometricError insertfacerecord(string encounterid, List<BiometricTemplate> facerecords) Uploads a set of biometric templates pertaining to a face into the ITV engine for subsequent identification. BiometricError insertfingerrecord(string encounterid, List<BiometricTemplate> fingerrecords) Uploads a set of biometric templates pertaining to a set of fingerprints into the ITV engine for subsequent identification. BiometricError insertirisrecord(string encounterid, List<BiometricTemplate> irisrecords) Uploads a set of biometric templates pertaining to iris into the ITV engine for subsequent identification. double verifyface(list<biometrictemplate> proberecord, List<BiometricTemplate> galleryrecord) Performs a 1:1 matching between two sets of biometric templates pertaining to face photographs. double verifyfinger(list<biometrictemplate> proberecord, List<BiometricTemplate> galleryrecord) Performs a 1:1 matching between two sets of biometric templates pertaining to fingerprints. double verifyiris(list<biometrictemplate> proberecord, List<BiometricTemplate> galleryrecord) Performs a 1:1 matching between two sets of biometric templates pertaining to one/two iris. Methods inherited from interface in.gov.uidai.qssitv.spi.imodalitysupport supportsface, supportsfinger, supportsiris Method Detail getfingertemplate List<BiometricTemplate> getfingertemplate(byte[] input, List<BiometricPosition> missingfingers, int age, boolean iso) Given a set of fingerprints for a resident, extract a list of biometric templates that can subsequently be used for identification and verification. Parameters: input - the resident fingerprints as a jpeg2000 image packed into an ISO packet. missingfingers - the list of missing fingers or an empty/null list if all fingers are present in the impression. UIDAI, Page 59 of 67
60 age - the resident's age at the time of fingerprints capture. iso - true to create the templates in standard ISO format, false to create the templates in vendor-specific propreitary format. Returns: a set of templates for the resident fingerprint. In case of an error, an empty list will be returned. The SDK will log it's error in the logs with log-level of ERROR. getfacetemplate List<BiometricTemplate> getfacetemplate(byte[] input, boolean iso) Given the photograph of a resident, extract a list of biometric templates that can subsequently be used for identification and verification. Parameters: input - the resident photograph as a jpeg2000 image packed into an ISO packet. iso - true to create the templates in standard ISO format, false to create the templates in vendor-specific propreitary format. Returns: a set of templates for the resident photograph. In case of an error, an empty list will be returned. The SDK will log it's error in the logs with log-level of ERROR. getiristemplate List<BiometricTemplate> getiristemplate(byte[] input, boolean iso) Given the iris images of a resident, extract a list of biometric templates that can subsequently be used for identification and verification. Parameters: input - the iris as a jpeg2000 image (two images in case of dual iris) packed into an ISO packet. iso - true to create the template in standard ISO format, false to create the template in vendor-specific propreitary format. Returns: a set of templates for the resident iris. In case of an error, an empty list will be returned. The SDK will log it's error in the logs with log-level of ERROR. insertfingerrecord BiometricError insertfingerrecord(string encounterid, List<BiometricTemplate> fingerrecords) Uploads a set of biometric templates pertaining to a set of fingerprints into the ITV engine for subsequent identification. The templates can be in ISO or in a vendor-specific propreitary format. Parameters: encounterid - unique identifier for the set of biometric templates. This is a GUID that is generated and maintained by the calling application. fingerrecords - biometric templates corresponding to a set of fingerprints. UIDAI, Page 60 of 67
61 Returns: null in case of a successful insertion. In case of an error, return a BiometricError object containing a clear and userunderstandable message explaining the cause of the error. insertfacerecord BiometricError insertfacerecord(string encounterid, List<BiometricTemplate> facerecords) Uploads a set of biometric templates pertaining to a face into the ITV engine for subsequent identification. The templates can be in ISO or in a vendor-specific propreitary format. Parameters: encounterid - unique identifier for the set of biometric templates. This is a GUID that is generated and maintained by the calling application. facerecords - biometric templates corresponding to a face. Returns: null in case of a successful insertion. In case of an error, return a BiometricError object containing a clear and user-understandable message explaining the cause of the error. insertirisrecord BiometricError insertirisrecord(string encounterid, List<BiometricTemplate> irisrecords) Uploads a set of biometric templates pertaining to iris into the ITV engine for subsequent identification. The set can include templates for a single iris or for dual iris. The templates can be in ISO or in a vendor-specific propreitary format. Parameters: encounterid - unique identifier for the set of biometric templates. This is a GUID that is generated and maintained by the calling application. irisrecords - biometric templates corresponding to one/two iris. Returns: null in case of a successful insertion. In case of an error, return a BiometricError object containing a clear and user-understandable message explaining the cause of the error. clearrecords void clearrecords() Instructs the ITV engine to remove all previously entered biometric templates pertaining to fingerprint, face and iris. Any subsequent identification would first require a fresh set of templates to be uploaded into the engine. identifyiris Map<String,Double> identifyiris(list<biometrictemplate> irisrecords, double threshold) UIDAI, Page 61 of 67
62 Performs a 1:N matching of a set of biometric templates pertaining to one/two iris against a gallery of templates. This gallery must be created beforehand by multiple calls to insertirisrecord(string, List). Parameters: irisrecords - the set of biometric templates being matched. threshold - a threshold value between 0 and 100. A matched value below the threshold level is never returned. This is used to restrict the output of identification to the top set of matches only. Returns: a map of encounter id to match confidence value (0-100). In case of an error, an empty map will be returned. The SDK will log it's error in the logs with log-level of ERROR. identifyface Map<String,Double> identifyface(list<biometrictemplate> facerecords, double threshold) Performs a 1:N matching of a set of biometric templates pertaining to face against a gallery of templates. This gallery must be created beforehand by multiple calls to insertfacerecord(string, List). Parameters: facerecords - the set of biometric templates being matched. threshold - a threshold value between 0 and 100. A matched value below the threshold level is never returned. This is used to restrict the output of identification to the top set of matches only. Returns: a map of encounter id to match confidence value (0-100). In case of an error, an empty map will be returned. The SDK will log it's error in the logs with log-level of ERROR. identifyfinger Map<String,Double> identifyfinger(list<biometrictemplate> fingerrecords, int age, double threshold) Performs a 1:N matching of a set of biometric templates pertaining to one set of fingerprints against a gallery of templates. This gallery must be created beforehand by multiple calls to insertfingerrecord(string, List). Parameters: fingerrecords - the set of biometric templates being matched. age - the resident's age at the time of capture of fingerprints that are being identified. threshold - a threshold value between 0 and 100. A matched value below the threshold level is never returned. This is used to restrict the output of identification to the top set of matches only. Returns: a map of encounter id to match confidence value (0-100). In case of an error, an empty map will be returned. The SDK will log it's error in the logs with log-level of ERROR. UIDAI, Page 62 of 67
63 verifyfinger double verifyfinger(list<biometrictemplate> proberecord, List<BiometricTemplate> galleryrecord) Performs a 1:1 matching between two sets of biometric templates pertaining to fingerprints. Parameters: proberecord - the set of biometric templates being matched. galleryrecord - the set of biometric templates against which the match is attempted. Returns: a score between 0 and 100. In case of an error, return a (negative) value indicating the failure reason See Also: for the list of reasons. verifyiris double verifyiris(list<biometrictemplate> proberecord, List<BiometricTemplate> galleryrecord) Performs a 1:1 matching between two sets of biometric templates pertaining to one/two iris. Parameters: proberecord - the set of biometric templates being matched. galleryrecord - the set of biometric templates against which the match is attempted. Returns: a score between 0 and 100. In case of an error, return a (negative) value indicating the failure reason See Also: for the list of reasons. verifyface double verifyface(list<biometrictemplate> proberecord, List<BiometricTemplate> galleryrecord) Performs a 1:1 matching between two sets of biometric templates pertaining to face photographs. Parameters: proberecord - the set of biometric templates being matched. galleryrecord - the set of biometric templates against which the match is attempted. Returns: a score between 0 and 100. In case of an error, return a (negative) value indicating the failure reason See Also: for the list of reasons. UIDAI, Page 63 of 67
64 Interface IModalitySupport in.gov.uidai.qssitv.spi All Known Subinterfaces: IITVEngine, IQSSEngine public interface IModalitySupport Common behavior to ascertain the different biometric modalities supported by each engine type. Method Summary boolean supportsface() Checks to see if the current instance of the engine can handle face data as input. boolean supportsfinger() Checks to see if the current instance of the engine can handle finger data as input. boolean supportsiris() Checks to see if the current instance of the engine can handle iris data as input. Method Detail supportsface boolean supportsface() Checks to see if the current instance of the engine can handle face data as input. Returns: true if the feature is supported, false otherwise. supportsfinger boolean supportsfinger() Checks to see if the current instance of the engine can handle finger data as input. Returns: true if the feature is supported, false otherwise. supportsiris boolean supportsiris() Checks to see if the current instance of the engine can handle iris data as input. Returns: true if the feature is supported, false otherwise. UIDAI, Page 64 of 67
65 Interface IQSSEngine in.gov.uidai.qssitv.spi All Superinterfaces: IModalitySupport public interface IQSSEngine extends IModalitySupport Definition of a QSS (Quality, Segmentation and Sequencing) engine to be implemented by third-party providers. Method Summary byte[] convertiso(byte[] input, FormatType type) Converts the contents of an ISO packet from one image format to another. FaceQSS getqssdataforface(byte[] input, List<LandMark> landmarks) Retrieves data composed of quality scores, actionable feedback and cropped image of the resident's face from a photograph of the resident. FingerprintQSS getqssdataforfingerprint(byte[] input, List<BiometricPosition> missingfingers) Retrieves data composed of quality scores, actionable feedback and segmentation information to identify each finger from an image of the resident's fingerprints. List<IrisQSS> getqssdataforiris(byte[] input) Retrieves data composed of quality scores and actionable feedback from iris images of the resident. Methods inherited from interface in.gov.uidai.qssitv.spi.imodalitysupport supportsface, supportsfinger, supportsiris Method Detail getqssdataforface FaceQSS getqssdataforface(byte[] input, List<LandMark> landmarks) Retrieves data composed of quality scores, actionable feedback and cropped image of the resident's face from a photograph of the resident. UIDAI, Page 65 of 67
66 Parameters: input - the resident's photograph as a JPEG/PNG image wrapped into an ISO packet. This is the actual captured data as received from the VDM. landmarks - optional data to identify significant locations on the photograph (e.g. eye position). This is used to improve the accuracy of the QSS data returned. Returns: the QSS data pertaining to face. In case of an error in the SDK while obtaining the data, the SDK is expected to still return a FaceQSS object, wherein the Compliance and the overallcomments may be used to describe the error to the user. getqssdataforfingerprint FingerprintQSS getqssdataforfingerprint(byte[] input, List<BiometricPosition> missingfingers) Retrieves data composed of quality scores, actionable feedback and segmentation information to identify each finger from an image of the resident's fingerprints. Parameters: input - input the resident's fingerprints impression as a raw image wrapped into an ISO packet. This is the actual captured data as received from the VDM. missingfingers - the set of biometric positions identifying fingers that are missing from the impression. Returns: the QSS data pertaining to fingers. In case of an error in the SDK while obtaining the data, the SDK is expected to still return a FingerprintQSS object, wherein the Compliance and the overallcomments may be used to describe the error to the user. getqssdataforiris List<IrisQSS> getqssdataforiris(byte[] input) Retrieves data composed of quality scores and actionable feedback from iris images of the resident. Parameters: input - input input the resident's iris as a raw image (two images in case of dual iris support by devices) wrapped into an ISO packet. This is the actual captured data as received from the VDM. Returns: the QSS data pertaining to iris. Two such data set shall be created in case the input contains dual iris information. In case of an error in the SDK while obtaining the data, the SDK is expected to still return a List object, wherein the Compliance and the overallcomments may be used to describe the error to the user. UIDAI, Page 66 of 67
67 convertiso byte[] convertiso(byte[] input, FormatType type) Converts the contents of an ISO packet from one image format to another. Parameters: input - an ISO packet containing one or more images in JPG, PNG or raw formats. type - the target image type. Returns: a new ISO packet containing a corresponding number of images in the target image type. In case of an error during the conversion, an empty byte array is returned, and the SDK logs the error at log level ERROR. UIDAI, Page 67 of 67
Installation and Configuration of Aadhaar Enrolment Client
Installation and Configuration of Aadhaar Enrolment Client UIDAI Unique Identification Authority of India Version: 2.0.0.2 Release date: 27-11-2012 Preface This training manual contains the detailed steps
Understanding The Face Image Format Standards
Understanding The Face Image Format Standards Paul Griffin, Ph.D. Chief Technology Officer Identix April 2005 Topics The Face Image Standard The Record Format Frontal Face Images Face Images and Compression
AADHAAR E-KYC SERVICE
UIDAI Unique Identification Authority of India Planning Commission, Govt. of India, 3rd Floor, Tower II, Jeevan Bharati Building, Connaught Circus, New Delhi 110001 AADHAAR E-KYC SERVICE NOVEMBER 2012
Technology behind Aadhaar. Unique Identification Authority of India www.uidai.gov.in Tampa, 20 th September 2012
Technology behind Aadhaar Unique Identification Authority of India www.uidai.gov.in Tampa, 20 th September 2012 Aadhaar at a Glance Technology Strategy Architecture Enrollment Process Status Authentication
esign Online Digital Signature Service
esign Online Digital Signature Service Government of India Ministry of Communications and Information Technology Department of Electronics and Information Technology Controller of Certifying Authorities
Published International Standards Developed by ISO/IEC JTC 1/SC 37 - Biometrics
Published International Standards Developed by ISO/IEC JTC 1/SC 37 - Biometrics Revised October 25, 2007 These standards can be obtained (for a fee) at ANSI s estandards Store: http://webstore.ansi.org/
NOTICE INVITING APPLICATIONS FOR HIRING OF BIOMETRICS CONSULTANT (A-11016/07/10-UIDAI)
UNIQUE INDENTIFICATION AUTHORITY OF INDIA PLANNING COMMISSION GOVERNMENT OF INDIA 3 rd Floor, Tower-II, Jeevan Bharati Building, Connaught Circus, New Delhi - 110 001 NOTICE INVITING APPLICATIONS FOR HIRING
Face detection is a process of localizing and extracting the face region from the
Chapter 4 FACE NORMALIZATION 4.1 INTRODUCTION Face detection is a process of localizing and extracting the face region from the background. The detected face varies in rotation, brightness, size, etc.
Aadhaar. Security Policy & Framework for UIDAI Authentication. Version 1.0. Unique Identification Authority of India (UIDAI)
Aadhaar Security Policy & Framework for UIDAI Authentication Version 1.0 Unique Identification Authority of India (UIDAI) Table of Contents ACRONYMS AND TERMS... 3 1. INTRODUCTION... 4 2. SECURITY CONSIDERATION...
Biometrics for Public Sector Applications
Technical Guideline TR-03121-2 Biometrics for Public Sector Applications Part 2: Software Architecture and Application Profiles Version 2.3 Bundesamt für Sicherheit in der Informationstechnik Postfach
Biometrics in e-governance and Academia using Hand-held Fingerprint Terminals
Proc. of Int. Conf. on Advances in Communication, Network, and Computing, CNC Biometrics in e-governance and Academia using Hand-held Fingerprint Terminals A. Tirupathi Rao 1, N. Pattabhi Ramaiah 1, Ahmed
Modular biometric architecture with secunet biomiddle
Version 2.1 Modular biometric architecture with secunet biomiddle White Paper Version 2.0, 25/03/10 secunet Security Networks AG Copyright 2010 by secunet Security Networks AG This document is for information
CA Data Protection. Content Provider Development Guide. Release 15.0
CA Data Protection Content Provider Development Guide Release 15.0 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation
Registrar On-Boarding Process
UIDAI Unique Identification Authority of India Planning Commission, Govt. of India (GoI), 3rd Floor, Tower II, Jeevan Bharati Building, Connaught Circus, New Delhi 110001 Registrar On-Boarding Process
solutions Biometrics integration
Biometrics integration Challenges Demanding access control and identity authentication requirements drive the need for biometrics. Regulations such as Sarbanes-Oxley (SOX), Health Insurance Portability
USAccess System- Registrar. Help Guide. Prepared for
USAccess System- Registrar Help Guide Prepared for United States Department of Agriculture Office of Security 300 7th Street SW, Washington DC 20024 Version 1.0 December 12, 2007 USAccess System Registrar
Description of Biometric Data Interchange Format Standards
Description of Biometric Data Interchange Format Standards INCITS M1 Technical Editors: Creed Jones, Colin Soutar, Jim Cambier, Michael McCabe, Paul Griffin, Rod Beatson, Samir Tamer 1 Introduction International
How To Fix Out Of Focus And Blur Images With A Dynamic Template Matching Algorithm
IJSTE - International Journal of Science Technology & Engineering Volume 1 Issue 10 April 2015 ISSN (online): 2349-784X Image Estimation Algorithm for Out of Focus and Blur Images to Retrieve the Barcode
May 2010. For other information please contact:
access control biometrics user guide May 2010 For other information please contact: British Security Industry Association t: 0845 389 3889 f: 0845 389 0761 e: [email protected] www.bsia.co.uk Form No. 181.
Peach Fuzzer Platform
Fuzzing is a software testing technique that introduces invalid, malformed, or random data to parts of a computer system, such as files, network packets, environment variables, or memory. How the tested
Intel Retail Client Manager Audience Analytics
Intel Retail Client Manager Audience Analytics By using this document, in addition to any agreements you have with Intel, you accept the terms set forth below. You may not use or facilitate the use of
In: Proceedings of RECPAD 2002-12th Portuguese Conference on Pattern Recognition June 27th- 28th, 2002 Aveiro, Portugal
Paper Title: Generic Framework for Video Analysis Authors: Luís Filipe Tavares INESC Porto [email protected] Luís Teixeira INESC Porto, Universidade Católica Portuguesa [email protected] Luís Corte-Real
BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note
BlackBerry Enterprise Service 10 Secure Work Space for ios and Android Version: 10.1.1 Security Note Published: 2013-06-21 SWD-20130621110651069 Contents 1 About this guide...4 2 What is BlackBerry Enterprise
W.A.R.N. Passive Biometric ID Card Solution
W.A.R.N. Passive Biometric ID Card Solution Updated November, 2007 Biometric technology has advanced so quickly in the last decade that questions and facts about its cost, use, and accuracy are often confused
Conformance test specification for BSI-TR 03121 Biometrics for public sector applications
Technical Guideline TR-03122-1 Conformance test specification for BSI-TR 03121 Biometrics for public sector applications Part 1: Framework Version 3.0 Bundesamt für Sicherheit in der Informationstechnik
Application-Specific Biometric Templates
Application-Specific Biometric s Michael Braithwaite, Ulf Cahn von Seelen, James Cambier, John Daugman, Randy Glass, Russ Moore, Ian Scott, Iridian Technologies Inc. Introduction Biometric technologies
SAS BI Dashboard 3.1. User s Guide
SAS BI Dashboard 3.1 User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2007. SAS BI Dashboard 3.1: User s Guide. Cary, NC: SAS Institute Inc. SAS BI Dashboard
PRIME IDENTITY MANAGEMENT CORE
PRIME IDENTITY MANAGEMENT CORE For secure enrollment applications processing and workflow management. PRIME Identity Management Core provides the foundation for any biometric identification platform. It
Biometric Authentication. Biometric Consortium Conference Tampa
Biometric Authentication Biometric Consortium Conference Tampa 18 September 2013 Features of UID (Aadhaar) Authentication Only Numbers No Smart Cards Random Numbers No Intelligence, No Profiling All Residents
Biometrics for public sector applications
Technical Guideline TR-03121-1 Biometrics for public sector applications Part 1: Framework Version 3.0 Bundesamt für Sicherheit in der Informationstechnik Postfach 20 03 63, 53133 Bonn, Germany Email:
Procedure for obtaining Biometric Device Certification (Authentication)
Procedure for obtaining Biometric Device Certification (Authentication) (BDCS(A)-03-02) ISSUE 1 STQC - IT Services STQC Directorate, Department of Information Technology, Ministry of Communications & Information
esign FAQ 1. What is the online esign Electronic Signature Service? 2. Where the esign Online Electronic Signature Service can be used?
esign FAQ 1. What is the online esign Electronic Signature Service? esign Electronic Signature Service is an innovative initiative for allowing easy, efficient, and secure signing of electronic documents
Personal Identity Verification (PIV) IMAGE QUALITY SPECIFICATIONS FOR SINGLE FINGER CAPTURE DEVICES
Personal Identity Verification (PIV) IMAGE QUALITY SPECIFICATIONS FOR SINGLE FINGER CAPTURE DEVICES 1.0 SCOPE AND PURPOSE These specifications apply to fingerprint capture devices which scan and capture
UIDAI. Biometrics Design Standards For UID Applications. Version 1.0 December 2009. Prepared by: UIDAI Committee on Biometrics
UIDAI Unique Identification Authority of India Planning Commission, Yojana Bhavan, Sansad Marg, New Delhi 110001 Biometrics Design Standards For UID Applications Version 1.0 December 2009 Prepared by:
Best Practice Fingerprint Enrolment Standards European Visa Information System
Best Practice Fingerprint Enrolment Standards European Visa Information System Improving performance by improving fingerprint image quality Experiences from pilot project BioDEVII 1 Agenda BioDEVII Phase
How To Install An Aneka Cloud On A Windows 7 Computer (For Free)
MANJRASOFT PTY LTD Aneka 3.0 Manjrasoft 5/13/2013 This document describes in detail the steps involved in installing and configuring an Aneka Cloud. It covers the prerequisites for the installation, the
HandPunch. Overview. Biometric Recognition. Installation. Is it safe?
HandPunch Overview Biometric Recognition Installation This section describes the HandPunch series of biometric scanners from RSI (Recognition Systems). These instructions apply to all the different HandPunch
IRIS Onboarding Platform. Product Overview
IRIS Onboarding Platform Product Overview The Need for a Digitized Onboarding Platform In the current paper-based onboarding process, disparate and self-contained systems work in a non-integrated environment.
Affdex SDK for Windows!
Affdex SDK for Windows SDK Developer Guide 1 Introduction Affdex SDK is the culmination of years of scientific research into emotion detection, validated across thousands of tests worldwide on PC platforms,
Keywords: fingerprints, attendance, enrollment, authentication, identification
Volume 4, Issue 11, November 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com 94 POS Terminal
e-authentication guidelines for esign- Online Electronic Signature Service
e-authentication guidelines for esign- Online Electronic Signature Service Version 1.0 June 2015 Controller of Certifying Authorities Department of Electronics and Information Technology Ministry of Communications
Customer Tips. Xerox Network Scanning TWAIN Configuration for the WorkCentre 7328/7335/7345. for the user. Purpose. Background
Xerox Multifunction Devices Customer Tips dc07cc0432 October 19, 2007 This document applies to these Xerox products: X WC 7328/7335/7345 for the user Xerox Network Scanning TWAIN Configuration for the
Xerox Multifunction Devices. Verify Device Settings via the Configuration Report
Xerox Multifunction Devices Customer Tips March 15, 2007 This document applies to these Xerox products: X WC 4150 X WCP 32/40 X WCP 35/45/55 X WCP 65/75/90 X WCP 165/175 X WCP 232/238 X WCP 245/255 X WCP
Multimodal Biometric Recognition Security System
Multimodal Biometric Recognition Security System Anju.M.I, G.Sheeba, G.Sivakami, Monica.J, Savithri.M Department of ECE, New Prince Shri Bhavani College of Engg. & Tech., Chennai, India ABSTRACT: Security
www.novell.com/documentation Administration Guide Modular Authentication Services (NMAS) 3.3.4 April 2013
www.novell.com/documentation Administration Guide Modular Authentication Services (NMAS) 3.3.4 April 2013 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents
Digital Image Requirements for New Online US Visa Application
Digital Image Requirements for New Online US Visa Application As part of the electronic submission of your DS-160 application, you will be asked to provide an electronic copy of your photo. The photo must
Migrating to vcloud Automation Center 6.1
Migrating to vcloud Automation Center 6.1 vcloud Automation Center 6.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a
22 nd NISS Conference
22 nd NISS Conference Submission: Topic: Keywords: Author: Organization: Tutorial BIOMETRICS - DEVELOPING THE ARCHITECTURE, API, ENCRYPTION AND SECURITY. INSTALLING & INTEGRATING BIOMETRIC SYSTEMS INTO
Aadhaar. Authentication Framework. Version 1.0. Unique Identification Authority of India (UIDAI)
Aadhaar Authentication Framework Version 1.0 Unique Identification Authority of India (UIDAI) Contents 1. Introduction... 3 2. Aadhaar Authentication... 4 3. Uses of Aadhaar Authentication... 5 4. Aadhaar
Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions OVERVIEW
Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions OVERVIEW About this Course This course provides SharePoint developers the information needed to implement SharePoint solutions
UniFinger Engine SDK Manual (sample) Version 3.0.0
UniFinger Engine SDK Manual (sample) Version 3.0.0 Copyright (C) 2007 Suprema Inc. Table of Contents Table of Contents... 1 Chapter 1. Introduction... 2 Modules... 3 Products... 3 Licensing... 3 Supported
White Paper March 1, 2005. Integrating AR System with Single Sign-On (SSO) authentication systems
White Paper March 1, 2005 Integrating AR System with Single Sign-On (SSO) authentication systems Copyright 2005 BMC Software, Inc. All rights reserved. BMC, the BMC logo, all other BMC product or service
The Implementation of Face Security for Authentication Implemented on Mobile Phone
The Implementation of Face Security for Authentication Implemented on Mobile Phone Emir Kremić *, Abdulhamit Subaşi * * Faculty of Engineering and Information Technology, International Burch University,
Making Multiple Code Reading Easy. Webinar
Making Multiple Code Reading Easy Webinar Today s Agenda Introduction How DataMan Makes Multiple Code Reading Easy Multiple Code Reading Applications Product Demonstration Videos Q&A 2 Introduction Introduction
ECE 533 Project Report Ashish Dhawan Aditi R. Ganesan
Handwritten Signature Verification ECE 533 Project Report by Ashish Dhawan Aditi R. Ganesan Contents 1. Abstract 3. 2. Introduction 4. 3. Approach 6. 4. Pre-processing 8. 5. Feature Extraction 9. 6. Verification
Web Services for Management Perl Library VMware ESX Server 3.5, VMware ESX Server 3i version 3.5, and VMware VirtualCenter 2.5
Technical Note Web Services for Management Perl Library VMware ESX Server 3.5, VMware ESX Server 3i version 3.5, and VMware VirtualCenter 2.5 In the VMware Infrastructure (VI) Perl Toolkit 1.5, VMware
Correcting the Lateral Response Artifact in Radiochromic Film Images from Flatbed Scanners
Correcting the Lateral Response Artifact in Radiochromic Film Images from Flatbed Scanners Background The lateral response artifact (LRA) in radiochromic film images from flatbed scanners was first pointed
Donky Technical Overview
Donky Technical Overview This document will provide the reader with an overview of the features offered and technologies used with the Donky Messaging Network. This document will give a good base level
ATV Data Link Simulator: A Development based on a CCSDS Layers Framework
SpaceOps 2010 ConferenceDelivering on the DreamHosted by NASA Mars 25-30 April 2010, Huntsville, Alabama AIAA 2010-2089 ATV Data Link Simulator: A Development based on a CCSDS
Mobile Onboarding for Bank Customers, Including KYC, Biometrics and Payments
Mobile Onboarding for Bank Customers, Including KYC, Biometrics and Payments Executive Summary Modern Banks increasingly find the need to enable customers to sign up for Banking products without having
Symantec Protection Engine for Cloud Services 7.0 Release Notes
Symantec Protection Engine for Cloud Services 7.0 Release Notes Symantec Protection Engine for Cloud Services Release Notes The software described in this book is furnished under a license agreement and
Extracting, Storing And Viewing The Data From Dicom Files
Extracting, Storing And Viewing The Data From Dicom Files L. Stanescu, D.D Burdescu, A. Ion, A. Caldare, E. Georgescu University of Kraiova, Romania Faculty of Control Computers and Electronics www.software.ucv.ro/en.
Developing Microsoft SharePoint Server 2013 Advanced Solutions
Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions Page 1 of 9 Developing Microsoft SharePoint Server 2013 Advanced Solutions Course 20489B: 4 days; Instructor-Led Introduction
Specialized Android APP Development Program with Java (SAADPJ) Duration 2 months
Specialized Android APP Development Program with Java (SAADPJ) Duration 2 months Our program is a practical knowledge oriented program aimed at making innovative and attractive applications for mobile
Enabling Single Signon with IBM Cognos 8 BI MR1 and SAP Enterprise Portal
Guideline Enabling Single Signon with IBM Cognos 8 BI MR1 and SAP Enterprise Portal Product: IBM Cognos 8 BI Area of Interest: Security 2 Copyright Copyright 2008 Cognos ULC (formerly Cognos Incorporated).
SNMP Adapter Installation and Configuration Guide
SNMP Adapter Installation and Configuration Guide vcenter Operations Manager 1.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced
Citrix Worx App SDK Overview
Citrix Worx App SDK Overview Table of Contents Introduction... 3 About the App Catalog Deployment Model... 3 About the Citrix MDX Toolkit... 4 The Worx App SDK... 5 The Unmanaged and Managed Modes of Worx
IBM SPSS Collaboration and Deployment Services Version 6 Release 0. Single Sign-On Services Developer's Guide
IBM SPSS Collaboration and Deployment Services Version 6 Release 0 Single Sign-On Services Developer's Guide Note Before using this information and the product it supports, read the information in Notices
IBM Tivoli Composite Application Manager for Microsoft Applications: Microsoft Hyper-V Server Agent Version 6.3.1 Fix Pack 2.
IBM Tivoli Composite Application Manager for Microsoft Applications: Microsoft Hyper-V Server Agent Version 6.3.1 Fix Pack 2 Reference IBM Tivoli Composite Application Manager for Microsoft Applications:
Setting Up Resources in VMware Identity Manager
Setting Up Resources in VMware Identity Manager VMware Identity Manager 2.4 This document supports the version of each product listed and supports all subsequent versions until the document is replaced
Ikasan ESB Reference Architecture Review
Ikasan ESB Reference Architecture Review EXECUTIVE SUMMARY This paper reviews the Ikasan Enterprise Integration Platform within the construct of a typical ESB Reference Architecture model showing Ikasan
Very large scale systems
Very large scale systems - Challenges, needs and methods Ravindra Gadde Research Engineer Iris ID Systems, Inc. 1 Large scale biometric systems and philosophy 1 Million? 10 Million? 100 Million? Large
VMware Mirage Web Manager Guide
Mirage 5.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this document,
ARCHITECT S GUIDE: Comply to Connect Using TNC Technology
ARCHITECT S GUIDE: Comply to Connect Using TNC Technology August 2012 Trusted Computing Group 3855 SW 153rd Drive Beaverton, OR 97006 Tel (503) 619-0562 Fax (503) 644-6708 [email protected]
ebus Player Quick Start Guide
ebus Player Quick Start Guide This guide provides you with the information you need to efficiently set up and start using the ebus Player software application to control your GigE Vision or USB3 Vision
Team Foundation Server 2012 Installation Guide
Team Foundation Server 2012 Installation Guide Page 1 of 143 Team Foundation Server 2012 Installation Guide Benjamin Day [email protected] v1.0.0 November 15, 2012 Team Foundation Server 2012 Installation
SOA REFERENCE ARCHITECTURE: WEB TIER
SOA REFERENCE ARCHITECTURE: WEB TIER SOA Blueprint A structured blog by Yogish Pai Web Application Tier The primary requirement for this tier is that all the business systems and solutions be accessible
Multimodal Biometrics R&D Efforts to Exploit Biometric Transaction Management Systems
Multimodal Biometrics R&D Efforts to Exploit Biometric Transaction Management Systems Erik J Bowman Principal Technologist Advanced Technology Group 24 September 2009 Agenda Problem Statements Research
Outside In Image Export Technology SDK Quick Start Guide
Reference: 2009/02/06-8.3 Outside In Image Export Technology SDK Quick Start Guide This document provides an overview of the Outside In Image Export Software Developer s Kit (SDK). It includes download
AP Computer Science Java Subset
APPENDIX A AP Computer Science Java Subset The AP Java subset is intended to outline the features of Java that may appear on the AP Computer Science A Exam. The AP Java subset is NOT intended as an overall
CounterACT Plugin Configuration Guide for ForeScout Mobile Integration Module MaaS360 Version 1.0.1. ForeScout Mobile
CounterACT Plugin Configuration Guide for ForeScout Mobile Integration Module Version 1.0.1 ForeScout Mobile Table of Contents About the Integration... 3 ForeScout MDM... 3 Additional Documentation...
Wage Disbursement Project (Aadhaar Authenticated Benefit Disbursement) User Operational Manual Version 3.9
Wage Disbursement Project (Aadhaar Authenticated Benefit Disbursement) User Operational Manual Version 3.9 Contents Aadhaar authenticated Benefit Disbursement Introduction... 5 1. Benefit Disbursement
ELECTRONIC DOCUMENT IMAGING
AIIM: Association for Information and Image Management. Trade association and professional society for the micrographics, optical disk and electronic image management markets. Algorithm: Prescribed set
Scan to Network and Scan to Network Premium. Administrator's Guide
Scan to Network and Scan to Network Premium Administrator's Guide March 2015 www.lexmark.com Contents 2 Contents Overview...3 Configuring the application...4 Configuring a destination...4 Configuring destination
Developing Microsoft SharePoint Server 2013 Advanced Solutions
Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions Course Details Course Outline Module 1: Creating Robust and Efficient Apps for SharePoint In this module, you will review key
Each ievo reader needs its own network cable, as each reader has its own IP address. Ensure this has been taken into consideration
WELCOME ievo would like to thank you for purchasing our product. ievo advise the use of a. Ensure you have calculated the correct power supply amp rating if you are connecting the ievo board and other
Automated Regional Justice Information System (ARJIS) Acceptable Use Policy for Facial Recognition
Automated Regional Justice Information System (ARJIS) Acceptable Use Policy for Facial Recognition Revised: 02/13/2015 A. STATEMENT OF PURPOSE The purpose of this document is to outline the responsibilities
PINsafe Multifactor Authentication Solution. Technical White Paper
PINsafe Multifactor Authentication Solution Technical White Paper Abstract PINsafe is a flexible authentication solution that offers a wide range of authentication models. The use of the patented one-time
Web Applications Access Control Single Sign On
Web Applications Access Control Single Sign On Anitha Chepuru, Assocaite Professor IT Dept, G.Narayanamma Institute of Technology and Science (for women), Shaikpet, Hyderabad - 500008, Andhra Pradesh,
BANKS AADHAAR ENABLED PAYMENT SYSTEM
FREQUENTLY ASKED QUESTIONS BY BANKS FOR AADHAAR ENABLED PAYMENT SYSTEM Page 1 1. What is AEPS? AEPS is a new payment service offered by the National Payments Corporation of India to banks, financial institutions
Integration SDK (HTTP API)
Integration SDK (HTTP API) 1. General agreements............................................ 3 2. Infrastructure................................................ 3 2.1 Get unique identifier.........................................
Computer Enabled Biometric Devices: A Fingerprint Scanner Hardware Overview
4050-350-39 Computer System Fundamentals, Prof. Hill, 1/20/2007 Computer Enabled Biometric Devices: A Fingerprint Scanner Hardware Overview Submitted by: Alex Getty Getty 1 With the current mindset of
5.1 Features 1.877.204.6679. [email protected] Denver CO 80202
1.877.204.6679 www.fourwindsinteractive.com 3012 Huron Street [email protected] Denver CO 80202 5.1 Features Copyright 2014 Four Winds Interactive LLC. All rights reserved. All documentation
Summary Table Voluntary Product Accessibility Template
Voluntary Product Accessibility Template (VPAT) Name of Product: imagerunner ADVANCE C5255/C5250/C5240/C5235 Date: May 27, 2012 Note: This document was prepared based on normal walk-up functionality. It
International Journal of Advanced Information in Arts, Science & Management Vol.2, No.2, December 2014
Efficient Attendance Management System Using Face Detection and Recognition Arun.A.V, Bhatath.S, Chethan.N, Manmohan.C.M, Hamsaveni M Department of Computer Science and Engineering, Vidya Vardhaka College
WebCenter 14.0.1 Release notes
WebCenter 14.0.1 Release notes 1. Introduction This document gives a quick overview of the new features and changes in WebCenter 14.0.1. It only covers the changes since the latest release of WebCenter
Remote Access Platform. Architecture and Security Overview
Remote Access Platform Architecture and Security Overview NOTICE This document contains information about one or more ABB products and may include a description of or a reference to one or more standards
