import { PageProps } from "../common/common-types" import Link from "next/link"; export const Dashboard = (props: PageProps) => { return (

This demo application showcases 4 key suggested flows for Id Verification applications built using Amazon Recognition.

Register new user flow

  1. Check face image quality via the DetectFaces API.
  2. Use the SearchFacesByImage API against the collection(s) to check for any duplicate registration.
  3. Index the face image using IndexFaces API and use the ExternalImageID (Social Security number or a similar unique ID) parameter to associate the face embeddings with the ExternalImageID.
  4. Store the face image in the S3 bucket along with the user metadata (face-id returned from the IndexFaces API, SSN and S3 URL) in DynamoDB. The SSN or a unique person identifier can be used as a key to lookup S3 URL and the face-id.
Try out Register new user flow

Register new user with ID card flow

{"What's"} different about this flow from the one above is that it requires the user to provide an Id card during the registration process. The faces on the Id card and the selfie are compared against each other to ensure that they match. The rest of the steps in the flow are identical to the above flow.
  1. Check face image quality via the DetectFaces API.
  2. Check face image quality of face on Id card via the DetectFaces API.
  3. Use CompareFaces API to ensure that the face on the supplied Id card and the face on the selfie match.
  4. Use the SearchFacesByImage API against the collection(s) to check for any duplicate registration.
  5. Index the face image using IndexFaces API and use the ExternalImageID (Social Security number or a similar unique ID) parameter to associate the face embeddings with the ExternalImageID.
  6. Store the face image in the S3 bucket along with the user metadata (face-id returned from the IndexFaces API, SSN and S3 URL) in DynamoDB. The SSN or a unique person identifier can be used as a key to lookup S3 URL and the face-id.
Try out Register new user with id card flow

Existing user login flow

  1. Check face image quality via the DetectFaces API.
  2. Search against the collection with SearchFacesbyImage API. If there is a face match, then return the use the faceId to return additional data about the user by cross-referencing against profile data in DynamoDB
Try out Existing user login flow

Update existing user photo flow

Coming soon...

); }; export default Dashboard;