Rekognition #274
-
hello everyone I am new to face recognition but I have worked with AWS and now learning Rust. Can I use this AWS SDK to work with Rust and AWS Rekognition for face recognition in JPG photo files? Use-case: I have >100,000+ JPG photos (and growing) and I have a list of ~10 individual faces to search for. This is not yet for production use, only for development and testing, I understand this SDK is not supported for production. Many thanks for any guidance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
We're still working on creating more examples for the many services we support. In the mean time, check out the detect_faces method in the Rekognition client. You can see the different inputs for that operation here. You can learn about how to create a client by looking at current examples like this one for S3 and then switching out the S3 parts for |
Beta Was this translation helpful? Give feedback.
We're still working on creating more examples for the many services we support. In the mean time, check out the detect_faces method in the Rekognition client. You can see the different inputs for that operation here. You can learn about how to create a client by looking at current examples like this one for S3 and then switching out the S3 parts for
aws_sdk_rekognition
. Good luck!