update wiki

master
Vladimir Mandic 2022-09-30 10:20:13 -04:00
parent c90beadaf7
commit 7ea124ad02
1 changed files with 6 additions and 6 deletions

@ -21,15 +21,15 @@ Overview of `Result` object type:
```ts
interface Result {
/** {@link FaceResult}: detection & analysis results */
face: Array<FaceResult>,
face: FaceResult[],
/** {@link BodyResult}: detection & analysis results */
body: Array<BodyResult>,
body: BodyResult[],
/** {@link HandResult}: detection & analysis results */
hand: Array<HandResult>,
hand: HandResult[],
/** {@link GestureResult}: detection & analysis results */
gesture: Array<GestureResult>,
gesture: GestureResult[],
/** {@link ObjectResult}: detection & analysis results */
object: Array<ObjectResult>
object: ObjectResult[]
/** global performance object with timing values for each operation */
performance: Record<string, number>,
/** 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<PersonResult>,
persons: PersonResult[],
}
```