香肉是什么肉
百度 用户注册是报考人员进行资格考试报名时必备的环节,只有注册成功后才能进行网上报名。
Defines options to control accuracy / speed trade-offs in performing face detection. In
general, choosing the more accurate mode will generally result in longer runtime, whereas
choosing the faster mode will generally result in detecting fewer faces.
PerformanceMode constants - enumeration of supported Performance Mode:
FaceDetectorOptions.PERFORMANCE_MODE_FAST
FaceDetectorOptions.PERFORMANCE_MODE_ACCURATE
Inherited Method Summary
From interface java.lang.annotation.Annotation
abstract Class<? extends Annotation>
|
annotationType()
|
abstract boolean |
|
abstract int |
hashCode()
|
abstract String
|
toString()
|
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 2025-08-04 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-04 UTC."],[[["`FaceDetectorOptions.PerformanceMode` allows you to control the trade-off between the accuracy and speed of face detection."],["Choosing a more accurate mode will increase processing time, while a faster mode might detect fewer faces."],["There are two performance modes: `FaceDetectorOptions.PERFORMANCE_MODE_FAST` and `FaceDetectorOptions.PERFORMANCE_MODE_ACCURATE`."]]],["`FaceDetectorOptions.PerformanceMode` controls the accuracy and speed of face detection. Two modes are available: `PERFORMANCE_MODE_FAST`, which prioritizes speed but may detect fewer faces, and `PERFORMANCE_MODE_ACCURATE`, which prioritizes accuracy but may take longer. It implements the `Annotation` interface. The inherited methods from this interface are `annotationType()`, `equals()`, `hashCode()`, and `toString()`. These allow handling of annotations.\n"]]