Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Pose

import type { Pose } from "https://aws-api.deno.dev/v0.4/services/rekognition.ts?docs=full";

Indicates the pose of the face as determined by its pitch, roll, and yaw.

interface Pose {
Pitch?: number | null;
Roll?: number | null;
Yaw?: number | null;
}

§Properties

§
Pitch?: number | null
[src]

Value representing the face rotation on the pitch axis.

§
Roll?: number | null
[src]

Value representing the face rotation on the roll axis.

§
Yaw?: number | null
[src]

Value representing the face rotation on the yaw axis.