Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
fbernaly committed Jul 6, 2023
1 parent a7e88f9 commit 7f11621
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 19 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

Packages with changes:

- [`google_ml_kit` - `v0.16.0`](#google_ml_kit---v0160)
- [`google_ml_kit` - `v0.16.1`](#google_ml_kit---v0161)
- [`google_mlkit_barcode_scanning` - `v0.8.0`](#google_mlkit_barcode_scanning---v080)
- [`google_mlkit_commons` - `v0.5.0`](#google_mlkit_commons---v050)
- [`google_mlkit_digital_ink_recognition` - `v0.9.0`](#google_mlkit_digital_ink_recognition---v090)
Expand All @@ -29,9 +29,9 @@ Packages with changes:

---

#### `google_ml_kit` - `v0.16.0`
#### `google_ml_kit` - `v0.16.1`

* Update dependencies.
* Update dependencies: Add Face Mesh Detector.

#### `google_mlkit_barcode_scanning` - `v0.8.0`

Expand Down
4 changes: 2 additions & 2 deletions packages/google_ml_kit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## 0.16.0
## 0.16.1

* Update dependencies.
* Update dependencies: Add Face Mesh Detector.

## 0.15.0

Expand Down
1 change: 1 addition & 0 deletions packages/google_ml_kit/lib/google_ml_kit.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export 'package:google_mlkit_commons/google_mlkit_commons.dart';
export 'package:google_mlkit_digital_ink_recognition/google_mlkit_digital_ink_recognition.dart';
export 'package:google_mlkit_entity_extraction/google_mlkit_entity_extraction.dart';
export 'package:google_mlkit_face_detection/google_mlkit_face_detection.dart';
export 'package:google_mlkit_face_mesh_detection/google_mlkit_face_mesh_detection.dart';
export 'package:google_mlkit_image_labeling/google_mlkit_image_labeling.dart';
export 'package:google_mlkit_language_id/google_mlkit_language_id.dart';
export 'package:google_mlkit_object_detection/google_mlkit_object_detection.dart';
Expand Down
6 changes: 6 additions & 0 deletions packages/google_ml_kit/lib/src/vision.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import 'package:google_mlkit_barcode_scanning/google_mlkit_barcode_scanning.dart';
import 'package:google_mlkit_digital_ink_recognition/google_mlkit_digital_ink_recognition.dart';
import 'package:google_mlkit_face_detection/google_mlkit_face_detection.dart';
import 'package:google_mlkit_face_mesh_detection/google_mlkit_face_mesh_detection.dart';
import 'package:google_mlkit_image_labeling/google_mlkit_image_labeling.dart';
import 'package:google_mlkit_object_detection/google_mlkit_object_detection.dart';
import 'package:google_mlkit_pose_detection/google_mlkit_pose_detection.dart';
Expand Down Expand Up @@ -53,6 +54,11 @@ class Vision {
return FaceDetector(options: options ?? FaceDetectorOptions());
}

/// Return an instance of [FaceMeshDetector].
FaceMeshDetector faceMeshDetector([FaceMeshDetectorOptions? option]) {
return FaceMeshDetector(option: option ?? FaceMeshDetectorOptions.faceMesh);
}

/// Returns an instance of [ObjectDetector].
ObjectDetector objectDetector({required ObjectDetectorOptions options}) {
return ObjectDetector(options: options);
Expand Down
29 changes: 15 additions & 14 deletions packages/google_ml_kit/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: google_ml_kit
description: A Flutter plugin to use all APIs from Google's standalone ML Kit for mobile platforms.
version: 0.16.0
version: 0.16.1
homepage: https://github.com/flutter-ml/google_ml_kit_flutter

environment:
Expand All @@ -12,15 +12,16 @@ dependencies:
sdk: flutter

# Vision APIs
google_mlkit_commons: ^0.4.0
google_mlkit_barcode_scanning: ^0.7.0
google_mlkit_digital_ink_recognition: ^0.8.0
google_mlkit_face_detection: ^0.7.0
google_mlkit_image_labeling: ^0.7.0
google_mlkit_object_detection: ^0.8.0
google_mlkit_pose_detection: ^0.7.0
google_mlkit_selfie_segmentation: ^0.4.0
google_mlkit_text_recognition: ^0.8.1
google_mlkit_commons: ^0.5.0
google_mlkit_barcode_scanning: ^0.8.0
google_mlkit_digital_ink_recognition: ^0.9.0
google_mlkit_face_detection: ^0.8.0
google_mlkit_face_mesh_detection: ^0.0.1
google_mlkit_image_labeling: ^0.8.0
google_mlkit_object_detection: ^0.9.0
google_mlkit_pose_detection: ^0.8.0
google_mlkit_selfie_segmentation: ^0.5.0
google_mlkit_text_recognition: ^0.9.0

# uncomment these lines when working on the local plugins
# google_mlkit_commons:
Expand All @@ -43,10 +44,10 @@ dependencies:
# path: ../google_mlkit_text_recognition

# Natural Language APIs
google_mlkit_entity_extraction: ^0.8.0
google_mlkit_language_id: ^0.7.0
google_mlkit_translation: ^0.7.0
google_mlkit_smart_reply: ^0.7.0
google_mlkit_entity_extraction: ^0.9.0
google_mlkit_language_id: ^0.8.0
google_mlkit_translation: ^0.8.0
google_mlkit_smart_reply: ^0.8.0

# uncomment these lines when working on the local plugins
# google_mlkit_entity_extraction:
Expand Down

0 comments on commit 7f11621

Please sign in to comment.