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

1 2

  /external/clang/test/SemaCXX/
tag-ambig.cpp 21 namespace A { struct Face {}; }
22 namespace B { struct Face {}; }
27 struct Face;
28 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);
62 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>();
99 Face[] faces = item.getFaces();
105 Face face = faces[j]
    [all...]
MediaItem.java 77 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/skia/src/gpu/
GrStencil.h 111 uint16_t fFuncMasks[2]; // mask for face tests
112 uint16_t fFuncRefs[2]; // reference values for face tests
172 enum Face {
182 GrStencilOp passOp(Face f) const { return static_cast<GrStencilOp>(fPassOps[f]); }
183 GrStencilOp failOp(Face f) const { return static_cast<GrStencilOp>(fFailOps[f]); }
184 GrStencilFunc func(Face f) const { return static_cast<GrStencilFunc>(fFuncs[f]); }
185 uint16_t funcMask(Face f) const { return fFuncMasks[f]; }
186 uint16_t funcRef(Face f) const { return fFuncRefs[f]; }
187 uint16_t writeMask(Face f) const { return fWriteMasks[f]; }
189 void setPassOp(Face f, GrStencilOp op) { fPassOps[f] = op; fFlags = 0;
    [all...]
GrClipMaskManager.cpp 840 GrStencilSettings::Face face = GrStencilSettings::kFront_Face; local
    [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/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
  /packages/apps/Camera/src/com/android/camera/ui/
FaceView.java 27 import android.hardware.Camera.Face;
46 // The orientation compensation for the face indicator to make it look
54 // As face detection can be flaky, we add a layer of filtering on top of it
57 private Face[] mFaces;
58 private Face[] mPendingFaces;
95 public void setFaces(Face[] faces) {
143 // Ignore the parameter. No autofocus animation for face detection.
150 // Ignore the parameter. No autofocus animation for face detection.
159 // Face indicator is displayed during preview. Do not clear the
  /packages/apps/Gallery2/src/com/android/camera/ui/
FaceView.java 27 import android.hardware.Camera.Face;
47 // The orientation compensation for the face indicator to make it look
55 // As face detection can be flaky, we add a layer of filtering on top of it
58 private Face[] mFaces;
59 private Face[] mPendingFaces;
98 public void setFaces(Face[] faces) {
146 // Ignore the parameter. No autofocus animation for face detection.
153 // Ignore the parameter. No autofocus animation for face detection.
162 // Face indicator is displayed during preview. Do not clear the
  /packages/apps/Gallery2/src/com/android/camera/
PhotoUI.java 21 import android.hardware.Camera.Face;
680 public void onFaceDetection(Face[] faces, android.hardware.Camera camera) {
  /frameworks/base/core/java/android/hardware/
Camera.java 183 * Hardware face detection. It does not use much CPU.
188 * 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.
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraTest.java 26 import android.hardware.Camera.Face;
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
Camera.java 41 import android.hardware.Camera.Face;
    [all...]
  /packages/apps/Camera/src/com/android/camera/
PhotoModule.java 31 import android.hardware.Camera.Face;
764 public void onFaceDetection(Face[] faces, android.hardware.Camera camera) {
    [all...]
  /external/skia/src/gpu/gl/
GrGpuGL.cpp     [all...]

Completed in 1296 milliseconds

1 2