Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Amazon Rekognition Face Liveness #427

Open
tunetolove opened this issue Jun 18, 2024 · 1 comment
Open

Amazon Rekognition Face Liveness #427

tunetolove opened this issue Jun 18, 2024 · 1 comment

Comments

@tunetolove
Copy link

Hello guys!

Thanks for your hard work!

Do you have any plans implementing this cool feature -
https://aws.amazon.com/rekognition/face-liveness/

@xvrh
Copy link
Collaborator

xvrh commented Jun 18, 2024

I think part of the API is already there:

import 'dart:convert';
import 'package:aws_client/rekognition_2016_06_27.dart';

void main() async {
  var api = Rekognition(region: 'eu-west-1');
  var session = await api.createFaceLivenessSession();

  var results = await api.getFaceLivenessSessionResults(sessionId: session.sessionId);
  print('Results: ${jsonEncode(results)}');
}

But we are missing the Amazon rekognition streaming api. I'm not sure how to add it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants