From 7ea124ad02f27fa74241e5bfc6f34ceab1062de5 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Fri, 30 Sep 2022 10:20:13 -0400 Subject: [PATCH] update wiki --- Result.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Result.md b/Result.md index c283245..a5e8b56 100644 --- a/Result.md +++ b/Result.md @@ -21,15 +21,15 @@ Overview of `Result` object type: ```ts interface Result { /** {@link FaceResult}: detection & analysis results */ - face: Array, + face: FaceResult[], /** {@link BodyResult}: detection & analysis results */ - body: Array, + body: BodyResult[], /** {@link HandResult}: detection & analysis results */ - hand: Array, + hand: HandResult[], /** {@link GestureResult}: detection & analysis results */ - gesture: Array, + gesture: GestureResult[], /** {@link ObjectResult}: detection & analysis results */ - object: Array + object: ObjectResult[] /** global performance object with timing values for each operation */ performance: Record, /** optional processed canvas that can be used to draw input on screen */ @@ -37,6 +37,6 @@ interface Result { /** timestamp of detection representing the milliseconds elapsed since the UNIX epoch */ readonly timestamp: number, /** getter property that returns unified persons object */ - persons: Array, + persons: PersonResult[], } ```