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