···88Import the Compose library
991010```kotlin
1111-implementation("com.performancecoachlab.posedetection:posedetection-compose:4.6.0")
1111+implementation("com.performancecoachlab.posedetection:posedetection-compose:4.7.1")
1212```
13131414Add camera use to your android manifest
···102102For 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.
103103For 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.
104104```kotlin
105105-val generalModel = initialiseObjectModel(
105105+val generalModel = ObjectModelProvider.get(
106106 ModelPath(
107107- "lite-model_efficientdet_lite2_detection_metadata_1.tflite",
107107+ "yolov10n_float16.tflite",
108108 "YOLOv3FP16"
109109 )
110110)