Introducing Google AI Edge Portal: Benchmark Edge AI at scale. Sign-up to request access during private preview.

MediaPipeTasksVision Framework Reference

FaceDetectorResult

class FaceDetectorResult : TaskResult 

Represents the detection results generated by FaceDetector .

  • The array of Detection objects each of which has a bounding box that is expressed in the unrotated input frame of reference coordinates system, i.e. in [0,image_width) x [0,image_height), which are the dimensions of the underlying image data.

    Declaration

    Swift

    var detections: [Detection ] { get }
  • Initializes a new FaceDetectorResult with the given array of detections and timestamp (in milliseconds).

    Declaration

    Swift

    init(detections: [Detection ], timestampInMilliseconds: Int)

    Parameters

    detections

    An array of Detection objects each of which has a bounding box that is expressed in the unrotated input frame of reference coordinates system, i.e. in [0,image_width) x [0,image_height), which are the dimensions of the underlying image data.

    timestampInMilliseconds

    The timestamp (in milliseconds) for this result.

    Return Value

    An instance of FaceDetectorResult initialized with the given array of detections and timestamp (in milliseconds).

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2024年05月08日 UTC.