HomeSort by relevance Sort by last modified time
    Searched full:faces (Results 1 - 25 of 180) sorted by null

1 2 3 4 5 6 7 8

  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXFD.cpp 199 camera_frame_metadata_t *faces; local
260 CAMHAL_LOGVB("Faces detected %d",
278 ret = encodeFaceCoordinates(faceData, &faces, previewWidth, previewHeight);
281 result = new CameraFDResult(faces);
298 camera_face_t *faces; local
324 faces = ( camera_face_t * ) malloc(sizeof(camera_face_t)*faceData->ulFaceCount);
325 if ( NULL == faces ) {
382 //For real faces, it is seen that the h/w passes a score >=80
383 //For false faces, we seem to get even a score of 70 sometimes.
401 faces[i].rect[trans_left] = tmp
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
FaceClustering.java 50 Face[] faces = item.getFaces(); local
51 if (faces != null) {
52 Face face = faces[faceIndex];
99 Face[] faces = item.getFaces();
100 if (faces == null || faces.length == 0) {
104 for (int j = 0; j < faces.length; j++) {
105 Face face = faces[j];
  /frameworks/base/media/java/android/media/
FaceDetector.java 26 * Identifies the faces of people in a
103 * be analysed and the maximum number of faces that can be detected.
109 * @param maxFaces the maximum number of faces to identify
125 * Finds all the faces found in a given {@link android.graphics.Bitmap}.
130 * @param faces an array in which to place all found
133 * @return the number of faces found
139 public int findFaces(Bitmap bitmap, Face[] faces)
148 if (faces.length < mMaxFaces) {
150 "faces[] smaller than maxFaces");
157 if (faces[i] == null
    [all...]
package.html 8 <p>Other special classes in the package offer the ability to detect the faces of people
  /packages/apps/Camera/src/com/android/camera/ui/
FaceView.java 55 // to avoid rapid changes in state (eg, flickering between has faces and
56 // not having faces)
95 public void setFaces(Face[] faces) {
96 if (LOGV) Log.v(TAG, "Num of faces=" + faces.length);
99 if ((faces.length > 0 && mFaces.length == 0)
100 || (faces.length == 0 && mFaces.length > 0)) {
101 mPendingFaces = faces;
113 mFaces = faces;
  /packages/apps/Gallery2/src/com/android/camera/ui/
FaceView.java 56 // to avoid rapid changes in state (eg, flickering between has faces and
57 // not having faces)
98 public void setFaces(Face[] faces) {
99 if (LOGV) Log.v(TAG, "Num of faces=" + faces.length);
102 if ((faces.length > 0 && mFaces.length == 0)
103 || (faces.length == 0 && mFaces.length > 0)) {
104 mPendingFaces = faces;
116 mFaces = faces;
  /cts/tests/src/android/widget/cts/
GalleryStubActivity.java 75 R.drawable.faces,
78 R.drawable.faces,
81 R.drawable.faces,
  /packages/apps/Camera/res/raw/
goofy_face.graph 118 @connect faceTracker[faces] => metarotate[faces];
119 @connect metarotate[faces] => goofyrenderer[faces];
  /packages/apps/Gallery2/res/raw/
goofy_face.graph 118 @connect faceTracker[faces] => metarotate[faces];
119 @connect metarotate[faces] => goofyrenderer[faces];
  /packages/apps/LegacyCamera/res/raw/
goofy_face.graph 115 @connect faceTracker[faces] => metarotate[faces];
116 @connect metarotate[faces] => goofyrenderer[faces];
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
FaceView.java 59 public void setFaces(Face[] faces) {
60 if (LOGV) Log.v(TAG, "Num of faces=" + faces.length);
62 mFaces = faces;
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TypeTest.java 38 for (int faces = 0; faces <= 1; faces++) {
39 boolean useFaces = (faces == 1);
86 for (int faces = 0; faces <= 1; faces++) {
87 boolean useFaces = faces == 1;
  /frameworks/rs/
rsType.cpp 63 rsAssert(mHal.state.faces);
110 if (mHal.state.faces) {
183 mHal.state.faces);
202 stream->addU8((uint8_t)(mHal.state.faces ? 1 : 0));
225 uint8_t faces = stream->loadU8(); local
226 Type *type = Type::getType(rsc, elem, x, y, z, lod != 0, faces !=0, 0);
279 nt->mHal.state.faces = dimFaces;
340 uint32_t dimY, uint32_t dimZ, bool mips, bool faces, uint32_t yuv) {
343 return Type::getType(rsc, e, dimX, dimY, dimZ, mips, faces, yuv);
352 // mHal.state.lodCount; mHal.state.faces; mElement; into typeDat
    [all...]
  /external/freetype/include/freetype/
ftcid.h 79 * This function only works with CID faces, returning an error
114 * This function only works with CID faces and OpenType fonts,
148 * This function only works with CID faces and OpenType fonts,
  /external/skia/legacy/src/ports/
SkFontHost_linux.cpp 81 SkTypeface* const* faces = family->fFaces; local
83 if (faces[style] != NULL) { // exact match
84 return faces[style];
88 if (faces[style] != NULL) {
89 return faces[style];
92 if (faces[SkTypeface::kNormal] != NULL) {
93 return faces[SkTypeface::kNormal];
97 if (faces[i] != NULL) {
98 return faces[i];
101 // should never get here, since the faces list should not be empt
    [all...]
SkFontHost_simple.cpp 80 SkTypeface* const* faces = family->fFaces; local
82 if (faces[style] != NULL) { // exact match
83 return faces[style];
87 if (faces[style] != NULL) {
88 return faces[style];
91 if (faces[SkTypeface::kNormal] != NULL) {
92 return faces[SkTypeface::kNormal];
96 if (faces[i] != NULL) {
97 return faces[i];
100 // should never get here, since the faces list should not be empt
    [all...]
  /external/skia/src/ports/
SkFontHost_linux.cpp 78 SkTypeface* const* faces = family->fFaces; local
80 if (faces[style] != NULL) { // exact match
81 return faces[style];
85 if (faces[style] != NULL) {
86 return faces[style];
89 if (faces[SkTypeface::kNormal] != NULL) {
90 return faces[SkTypeface::kNormal];
94 if (faces[i] != NULL) {
95 return faces[i];
98 // should never get here, since the faces list should not be empt
    [all...]
SkFontHost_simple.cpp 80 SkTypeface* const* faces = family->fFaces; local
82 if (faces[style] != NULL) { // exact match
83 return faces[style];
87 if (faces[style] != NULL) {
88 return faces[style];
91 if (faces[SkTypeface::kNormal] != NULL) {
92 return faces[SkTypeface::kNormal];
96 if (faces[i] != NULL) {
97 return faces[i];
100 // should never get here, since the faces list should not be empt
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Type.java 37 * faces. LOD and cube map faces are booleans to indicate present or not
159 int faces = 1; local
161 faces = 6;
173 int count = x * y * z * faces;
186 count += x * y * z * faces;
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Type.java 38 * faces. LOD and cube map faces are booleans to indicate present or not
157 int faces = 1; local
159 faces = 6;
171 int count = x * y * z * faces;
184 count += x * y * z * faces;
  /cts/tests/tests/media/src/android/media/cts/
FaceDetectorTest.java 38 intent.putExtra(FaceDetectorStub.IMAGE_ID, R.drawable.faces);
  /external/skia/tests/
FontHostTest.cpp 112 static const char* const faces[] = { local
147 for (size_t i = 0; i < SK_ARRAY_COUNT(faces); i++) {
148 SkTypeface* face = SkTypeface::CreateFromName(faces[i], SkTypeface::kNormal);
170 // faces[i], SkScalarToFloat(width1), SkScalarToFloat(width2));
  /frameworks/rs/cpp/
Type.cpp 31 uint32_t faces = 1; local
33 faces = 6;
45 uint32_t count = x * y * z * faces;
57 count += x * y * z * faces;
  /frameworks/av/services/camera/libcameraservice/camera2/
FrameProcessor.cpp 89 Vector<camera_face_t> faces; local
98 // No faces this frame
106 ALOGE("%s: Camera %d: More faces than expected! (Got %d, max %d)",
143 faces.setCapacity(metadata.number_of_faces);
184 faces.push_back(face);
187 metadata.faces = faces.editArray();
  /external/neven/FaceRecEm/common/src/b_FDSDK/
FaceFinder.h 54 /* maximum number of detectable faces */
88 /** returns number of faces that can be retrieved from face finder with function btk_FaceFinder_getDCR */

Completed in 1840 milliseconds

1 2 3 4 5 6 7 8