Home | History | Annotate | Download | only in params

Lines Matching refs:Face

27  * Describes a face detected in an image.
29 public final class Face {
34 * @see Face#Face(Rect, int)
61 * Create a new face with all fields set.
71 * @param bounds Bounds of the face.
73 * @param id A unique ID per face visible to the tracker.
88 public Face(Rect bounds, int score, int id,
111 * Create a new face without the optional fields.
119 * the face id of each face is expected to be {@value #ID_UNSUPPORTED}, the leftEyePosition,
120 * rightEyePosition, and mouthPositions are expected to be {@code null} for each face.</p>
122 * @param bounds Bounds of the face.
132 public Face(Rect bounds, int score) {
138 * Bounds of the face.
152 * The confidence level for the detection of the face.
172 * An unique id per face while the face is visible to the tracker.
175 * If the face leaves the field-of-view and comes back, it will get a new
184 * the face id of each face is expected to be {@value #ID_UNSUPPORTED}.</p>
245 * Represent the Face as a string for debugging purposes.