HomeSort by relevance Sort by last modified time
    Searched refs:Face (Results 1 - 25 of 28) sorted by null

1 2

  /external/clang/test/SemaCXX/
tag-ambig.cpp 20 namespace A { struct Face {}; }
21 namespace B { struct Face {}; }
26 struct Face;
27 Face *mFaces;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
Face.java 25 public class Face implements Comparable<Face> {
30 public Face(String name, String personId, String rect) {
54 if (obj instanceof Face) {
55 Face face = (Face) obj; local
56 return mPersonId.equals(face.mPersonId);
61 public int compareTo(Face another) {
FaceClustering.java 50 Face[] faces = item.getFaces();
52 Face face = faces[faceIndex]; local
55 mCoverRegion = face.getPosition();
58 Rect region = face.getPosition();
62 mCoverRegion = face.getPosition();
92 final TreeMap<Face, FaceCluster> map =
93 new TreeMap<Face, FaceCluster>();
98 Face[] faces = item.getFaces();
104 Face face = faces[j]
    [all...]
MediaItem.java 78 public Face[] getFaces() {
  /cts/tests/tests/media/src/android/media/cts/
FaceDetector_FaceTest.java 25 import android.media.FaceDetector.Face;
52 List<Face> detectedFaces = mActivity.getDetectedFaces();
54 Face face = detectedFaces.get(0); local
56 face.getMidPoint(eyesMP);
59 assertTrue(face.confidence() >= goodConfidence);
61 assertEquals(eyesDistance, face.eyesDistance(), tolerance);
66 face.pose(FaceDetector.Face.EULER_X);
67 face.pose(FaceDetector.Face.EULER_Y)
    [all...]
FaceDetectorStub.java 22 import android.media.FaceDetector.Face;
41 public List<Face> getDetectedFaces() {
FaceView.java 28 import android.media.FaceDetector.Face;
36 private Face[] mAllFaces = new Face[NUM_FACES];
44 public ArrayList<Face> detectedFaces = new ArrayList<Face>();
82 for (Face face : detectedFaces) {
84 face.getMidPoint(eyesMP);
87 float eyesDistance = face.eyesDistance() * scale;
FaceDetectorTest.java 25 import android.media.FaceDetector.Face;
  /frameworks/base/media/java/android/media/
FaceDetector.java 32 * A Face contains all the information identifying the location
33 * of a face in a bitmap.
35 public class Face {
36 /** The minimum confidence factor of good face recognition */
38 /** The x-axis Euler angle of a face. */
40 /** The y-axis Euler angle of a face. */
42 /** The z-axis Euler angle of a face. */
47 * certain what has been found is actually a face. A confidence
56 * face's mid-point
69 * Returns the face's pose. That is, the rotations around either
    [all...]
  /external/opencv/cvaux/src/
_cvfacedetection.h 216 class Face
219 Face(FaceTemplate * lpFaceTemplate);
220 virtual ~Face();
231 FaceFeature * m_lpIdealFace;//ideal face definition
232 long m_lFaceFeaturesNumber; //total number of diferent face features
233 long * m_lplFaceFeaturesCount;//number of each features fouded for this face
234 FaceFeature ** m_lppFoundedFaceFeatures;//founded features of curen face
238 inline bool Face::isFeature(void * lpElem)
281 class RFace:public Face
303 ListElem(Face * pFace,ListElem * pHead)
    [all...]
cvface.cpp 48 Face::Face(FaceTemplate * lpFaceTemplate)
50 //init number of face elements;
53 //init array of numbers of foundet face elements of each type
57 //init array of ideal face features
71 }//Face::Face(FaceTemplate * lpFaceTemplate)
73 Face::~Face()
85 }//Face::~Face(
    [all...]
cvfacedetection.cpp 195 Face * tmp;
422 //class Face
436 ListElem::ListElem(Face * pFace,ListElem * pHead)
444 }//ListElem::ListElem(Face * pFace)
474 int List::AddElem(Face * pFace)
478 }//List::AddElem(Face * pFace)
480 Face * List::GetData()
484 }//Face * List::GetData()
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/
OBJLoader.java 71 protected final ArrayList<Face> faces = new ArrayList<Face>();
72 protected final HashMap<String, ArrayList<Face>> matFaces = new HashMap<String, ArrayList<Face>>();
129 protected static class Face {
145 // for (Entry<String, ArrayList<Face>> entry : matFaces.entrySet()){
146 // ArrayList<Face> materialFaces = entry.getValue();
190 protected Face[] quadToTriangle(Face f){
193 Face[] t = new Face[]{ new Face(), new Face() }
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
FaceView.java 24 import android.hardware.Camera.Face;
37 // The orientation compensation for the face indicator to make it look
45 private Face[] mFaces;
59 public void setFaces(Face[] faces) {
92 // Ignore the parameter. No autofocus animation for face detection.
99 // Ignore the parameter. No autofocus animation for face detection.
108 // Face indicator is displayed during preview. Do not clear the
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
FaceView.java 27 import android.hardware.Camera.Face;
37 // The orientation compensation for the face indicator to make it look
45 private Face[] mFaces;
59 public void setFaces(Face[] faces) {
105 // Face indicator is displayed during preview. Do not clear the
  /frameworks/base/core/java/android/hardware/
Camera.java 177 * Hardware face detection. It does not use much CPU.
182 * Software face detection. It uses some CPU.
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
CropImage.java 78 boolean mWaitingToPick; // Whether we are wait the user to pick a face.
420 FaceDetector.Face[] mFaces = new FaceDetector.Face[3];
423 // For each face, we create a HightlightView for it.
424 private void handleFace(FaceDetector.Face f) {
468 // Create a default HightlightView if we found no face in the picture.
498 // Scale the image down for faster face detection.
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
CropView.java 208 private void renderFace(GLCanvas canvas, RectF face, boolean pressed) {
217 RectF r = mAnimation.mapRect(face, mRect);
664 private final FaceDetector.Face[] mFaces = new FaceDetector.Face[MAX_FACE_COUNT];
670 setName("face-detect");
683 private RectF getFaceRect(FaceDetector.Face face) {
685 face.getMidPoint(point);
689 float rx = face.eyesDistance() * FACE_EYE_RATIO;
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraTest.java 26 import android.hardware.Camera.Face;
    [all...]
  /packages/apps/Camera/src/com/android/camera/
Camera.java 31 import android.hardware.Camera.Face;
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
Camera.java 41 import android.hardware.Camera.Face;
    [all...]
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/4/
android.jar 

Completed in 1190 milliseconds

1 2