Question 95:
Company D has a legacy employee verification product which exists for many years. The system has used some old facial recognition technologies by comparing new photos with original ones in a large file system to verify employees. It is becoming harder and harder to maintain the system as all product architects have left and technical documents are not well maintained. The company decides to migrate the system to AWS and use some new technologies if possible. However, they do not want to spend huge efforts on the migration and hope to finish it as soon as possible. Which option is the best for the company to choose at a reasonable cost?
Answer options:
A.Utilize a popular facial recognition service that has used new biometric matching technology. Put the application in EC2 to handle the facial recognition tasks. Also, migrate the on-premise file system to S3. B.Use Rekognition CLI to develop an application to use AWS Rekognition facial analysis service. For example, “aws rekognition detect-faces” can return a JSON response that contains information for each detected face. It can also compare faces to see if they match. C.Utilize a modern facial recognition SAAS. Put the application in EC2 or lambda to communicate with the SAAS service provider. Also, migrate the on-premise file system to RDS. Make sure that the SAAS provider has access to RDS. D.Transform all source or target pictures to base64-encoded bytes. Use Rekognition CLI to compare faces such as “aws rekognition compare-faces” by using the pictures with the format of image bytes.