blob: 32218dff569ec2c0796c13e3bbce0eac0131c6af [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://wicg.github.io/shape-detection-api/#face-detection-api
[
Constructor(optional FaceDetectorOptions faceDetectorOptions),
ConstructorCallWith=ExecutionContext,
Exposed=(Window,Worker),
MeasureAs=ShapeDetection_FaceDetectorConstructor,
OriginTrialEnabled=ShapeDetection
] interface FaceDetector {
[CallWith=ScriptState, MeasureAs=ShapeDetectionAPI] Promise<sequence<DetectedFace>> detect(ImageBitmapSource image);
};