pushupcount 0.0.1
pushupcount: ^0.0.1 copied to clipboard
A push up counter package which will count push ups using ML kit
push_up_counter #
Overview #
push_up_counter is a Flutter package that uses Google's ML Kit for pose detection to count push-ups. It opens the camera view, detects the user's pose, and counts the number of push-ups performed. This package is perfect for fitness apps or any applications that require real-time exercise tracking.
Features #
- Real-time push-up counting using ML Kit's pose detection
- Easy integration into any Flutter application
- Customizable parameters for pose detection sensitivity
Getting started #
Add the following dependency to your pubspec.yaml file:
dependencies: push_up_counter: ^1.0.0 (lastest_version) flutter_bloc: ^8.1.6 (lastest_version) google_mlkit_pose_detection: ^0.9.0 (lastest_version) image_picker: ^1.0.1 (lastest_version) camera: ^0.11.0+1 (lastest_version) path: ^1.8.3 (lastest_version) path_provider: ^2.0.15 (lastest_version) google_mlkit_commons: ^0.5.0 (lastest_version)
Usage #
Scaffold( appBar: AppBar( backgroundColor: Theme.of(context).colorScheme.inversePrimary, title: Text(widget.title), ), body: Center( child: PoseDetectorView(), ));
Additional information #
Github Repo - https://github.com/Princeish07/PushUpCounter.git