This repository has no description
0

Configure Feed

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

chore:bump version

+3 -3
+1 -1
posedetection/build.gradle.kts
··· 6 6 7 7 mavenPublishing { 8 8 publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL) 9 - coordinates("com.performancecoachlab.posedetection", "posedetection-compose", "4.3.0") 9 + coordinates("com.performancecoachlab.posedetection", "posedetection-compose", "4.4.0") 10 10 11 11 pom { 12 12 name.set("Pose Detection")
+2 -2
sample/composeApp/src/commonMain/kotlin/com/nate/posedetection/App.kt
··· 354 354 CameraView( 355 355 skeletonRepository = skeletonRepository, 356 356 customObjectRepository = customObjectRespository, 357 - detectMode = DetectMode.NONE, 357 + detectMode = DetectMode.OBJECT, 358 358 drawSkeleton = true, 359 359 drawObjects = { obj -> 360 360 obj.map { 361 361 DrawableObject( 362 362 obj = it, 363 - shape = DrawableShape.OVAL, 363 + shape = DrawableShape.RECTANGLE, 364 364 colour = Color.Yellow, 365 365 style = Stroke(it.boundingBox.width * 0.1f) 366 366 )