pose_detection_tflite 1.2.2
pose_detection_tflite: ^1.2.2 copied to clipboard
Pose & landmark detection using on-device TFLite models.
1.2.2 #
- Fix Android build: bump tflite_flutter_custom to 1.2.5 (fixes undefined symbol TfLiteIntArrayCreate linker error)
- Add missing MainActivity.kt for Android example app
1.2.1 #
- Improved auto .dylib bundling on MacOS
1.2.0 #
- Add native OpenCV preprocessing for 5-15x faster image processing (SIMD-accelerated)
- New
useNativePreprocessingparameter onPoseDetector(default: true) - New
detectOnMat()method onYoloV8PersonDetectorfor direct cv.Mat input - New
runOnMat()method onPoseLandmarkModelRunnerfor direct cv.Mat input - Add
opencv_dartdependency for native image operations - Refactored detection code with shared post-processing helpers
1.1.1 #
- Cache yolo input buffer and pass flat tensor to avoid reshape overhead
- Update
tflite_flutter_customto 1.1.0 - 100% test coverage
1.1.0 #
- Parallel landmark detection in multi person photos, faster processing
- Improve error handling
- Add integration tests
1.0.1 #
- Improved Dartdoc coverage
1.0.0 #
This version contains breaking changes:
- Breaking API changes:
PoseDetectoruses constructor params (noPoseOptions), returnsPose/BoundingBox, and detection methods are async - YOLO and BlazePose run via isolates to avoid blocking
- Expanded DartDoc coverage
poseLandmarkConnectionsfor drawing skeletons.- Example app improvements, sample images added.
0.0.3 #
- Removed unused dependency
path_provider
0.0.2 #
- Improved documentation
0.0.1 #
- Initial release
- Person detection using YOLOv8
- Pose landmark detection with MediaPipe Pose
- Support for lite, full, and heavy models
- Box-only and full landmark detection modes