dart_naver_clova_face_recognition 0.0.2 copy "dart_naver_clova_face_recognition: ^0.0.2" to clipboard
dart_naver_clova_face_recognition: ^0.0.2 copied to clipboard

An unofficial package for using Naver Clova face recognition, celebrity recognition.

dart_naver_clova_face_recognition #

An unofficial package for using Naver Clova face recognition, celebrity recognition.

  • Naver Clova face recognition API
    • Celebrity recognition
    • Face recognition

Requirements #

Here is what you need to use the Dart SDK:

  • Dart 2.19.0 or higher

Exmaple #

First, generate Naver client id and client secret.

Initialize NaverWithoutLoginApi with your API key.

NaverWithoutLoginApi.init(clientId: clientId, clientSecret: clientSecret)

Use APIname.queryFunction form to call query function.

You can check available API.

/// Recognize celebrity with given Uint8List image.
///
/// Returns CelebrityResponse
final result = await CelebrityRecognition.recognizeCelebrity(await io.File('your-image-path').readAsBytes())
print(result.runtimeType); // Print CelebrityResponse

/// Recognize face with given Uint8List image.
///
/// Returns FaceResponse.
final result = await FaceRecognition.recognizeFace(await io.File('your-image-path').readAsBytes());
print(result.runtimeType); // Print FaceResponse

pub.dev #

Documentation comment will be added gradually 😀

2
likes
130
points
53
downloads

Publisher

verified publishercoaspe.com

Weekly Downloads

An unofficial package for using Naver Clova face recognition, celebrity recognition.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

dart_naver_without_login_common, http, json_annotation, plugin_platform_interface

More

Packages that depend on dart_naver_clova_face_recognition