This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: bump version

+5 -6
+4 -5
README.md
··· 8 8 Import the Compose library 9 9 10 10 ```kotlin 11 - implementation("com.performancecoachlab.posedetection:posedetection-compose:2.1.1") 11 + implementation("com.performancecoachlab.posedetection:posedetection-compose:3.0.0") 12 12 ``` 13 13 14 14 Add camera use to your android manifest ··· 102 102 For android you need to add a .tflite model file to your assets folder, then set androidModelPath to the name of the model file, including the .tflite extension. 103 103 For iOS you need to add a .mlmodel model file to your Xcode project, then set iosModelPath to the name of the model file without the .mlmodel extension. 104 104 ```kotlin 105 - CustomObjectModel.init( 106 - androidModelPath = "4.tflite", 107 - iosModelPath = "YOLOv3FP16" 108 - ) 105 + CustomObjectDetectorModels.init( 106 + ModelPath("lite-model_efficientdet_lite2_detection_metadata_1.tflite", "YOLOv3FP16") 107 + ) 109 108 ``` 110 109 Once this is done, you can use the `CustomObjectRepository` to receive detected objects in the camera feed or video frames. 111 110
+1 -1
posedetection/build.gradle.kts
··· 6 6 7 7 mavenPublishing { 8 8 publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL) 9 - coordinates("com.performancecoachlab.posedetection", "posedetection-compose", "2.1.1") 9 + coordinates("com.performancecoachlab.posedetection", "posedetection-compose", "3.0.0") 10 10 11 11 pom { 12 12 name.set("Pose Detection")