···88Import the Compose library
991010```kotlin
1111-implementation("com.performancecoachlab.posedetection:posedetection-compose:2.1.1")
1111+implementation("com.performancecoachlab.posedetection:posedetection-compose:3.0.0")
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-CustomObjectModel.init(
106106- androidModelPath = "4.tflite",
107107- iosModelPath = "YOLOv3FP16"
108108- )
105105+CustomObjectDetectorModels.init(
106106+ ModelPath("lite-model_efficientdet_lite2_detection_metadata_1.tflite", "YOLOv3FP16")
107107+)
109108```
110109Once this is done, you can use the `CustomObjectRepository` to receive detected objects in the camera feed or video frames.
111110