dart_naver_clova_face_recognition 0.2.0
dart_naver_clova_face_recognition: ^0.2.0 copied to clipboard
An unofficial Dart client for NAVER CLOVA face and celebrity recognition APIs.
dart_naver_clova_face_recognition #
An unofficial Dart client for NAVER CLOVA celebrity and face recognition.
Requirements #
- Dart 3.11 or later.
- An application with CLOVA Face Recognition enabled at NAVER Developers.
- Images no larger than 2MB.
Usage #
NaverWithoutLoginApi.init(
clientId: developersClientId,
clientSecret: developersClientSecret,
);
final celebrity = await CelebrityRecognition.recognizeCelebrity(imageBytes);
print(celebrity.faces.first.celebrity.value);
final face = await FaceRecognition.recognizeFace(imageBytes);
print(face.faces.first.emotion.value);
The package is not endorsed by NAVER.
This package covers both operations in the current official CFR catalog: celebrity recognition and face/attribute detection.