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

SearchFacesByImageResponse

import type { SearchFacesByImageResponse } from "https://aws-api.deno.dev/v0.4/services/rekognition.ts?docs=full";
interface SearchFacesByImageResponse {
FaceMatches?: FaceMatch[] | null;
FaceModelVersion?: string | null;
SearchedFaceBoundingBox?: BoundingBox | null;
SearchedFaceConfidence?: number | null;
}

§Properties

§
FaceMatches?: FaceMatch[] | null
[src]

An array of faces that match the input face, along with the confidence in the match.

§
FaceModelVersion?: string | null
[src]

Version number of the face detection model associated with the input collection (CollectionId).

§
SearchedFaceBoundingBox?: BoundingBox | null
[src]

The bounding box around the face in the input image that Amazon Rekognition used for the search.

§
SearchedFaceConfidence?: number | null
[src]

The level of confidence that the searchedFaceBoundingBox, contains a face.