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

1 2 3 4 5 6 7 8 91011>>

  /development/samples/browseable/WatchFace/
_index.jd 8 This sample demonstrates how to create watch faces for android wear and includes a phone app
9 and a wearable app. The wearable app has a variety of watch faces including analog, digital,
  /frameworks/base/docs/html/training/wearables/watch-faces/
index.jd 1 page.title=Creating Watch Faces
19 <p>Watch Faces</p>
27 <p>DevBytes: Watch Faces for Android Wear</p>
31 <p>Watch faces in Android Wear leverage a dynamic digital canvas to tell time using colors,
34 Wear companion app</a> provides watch faces with different styles and shapes. When
35 users select one of the available watch faces on the wearable or on the companion app, the
38 <p>Android Wear enables you to create custom watch faces for Wear devices. When users install a
40 app</a> with watch faces, they become available in the Android Wear companion app
43 <p>This class teaches you to implement custom watch faces and to package them inside a wearable
56 <dt><a href="{@docRoot}training/wearables/watch-faces/designing.html"
    [all...]
designing.jd 1 page.title=Designing Watch Faces
14 <li><a href="{@docRoot}design/wear/watchfaces.html">Watch Faces for Android Wear</a></li>
23 <p>Watch Faces</p>
29 provide advanced capabilities for watch faces that you can leverage in your designs, such as
33 <p>This lesson provides a summary of the design considerations for watch faces and general
35 href="{@docRoot}design/wear/watchfaces.html">Watch Faces for Android Wear</a> design guide.</p>
45 <img src="{@docRoot}training/wearables/watch-faces/images/Render_Next.png"
47 <img src="{@docRoot}training/wearables/watch-faces/images/Render_Interactive.png"
50 <strong>Figure 1.</strong> Example watch faces.</p>
82 <p>For more information about designing watch faces for Android Wear, see the <
    [all...]
issues.jd 15 <li><a href="{@docRoot}design/wear/watchfaces.html">Watch Faces for Android Wear</a></li>
22 issues that you may encounter as you implement your first few watch faces.</p>
63 <img src="{@docRoot}training/wearables/watch-faces/images/AnalogNoCard.png" alt=""
65 <img src="{@docRoot}training/wearables/watch-faces/images/AnalogWithCard.png" alt=""
67 <p class="img-caption"><strong>Figure 1.</strong> Some analog watch faces require adjustments
73 <a href="{@docRoot}training/wearables/watch-faces/drawing.html#SystemUI">system UI style</a>. Your
77 <p>Analog watch faces can make adjustments when a notification card is present, like scaling
79 watch faces that display the time in the area of the screen not covered by peek cards do not
94 <img src="{@docRoot}training/wearables/watch-faces/images/Indicators_Cropped.png" alt=""
119 href="{@docRoot}training/wearables/watch-faces/drawing.html#SystemUI">Configure the System UI</a
    [all...]
  /cts/apps/CameraITS/tests/scene2/
test_faces.py 43 faces = md['android.statistics.faces']
45 # 0 faces should be returned for OFF mode
47 assert(len(faces) == 0)
52 if len(faces) == 0:
55 if len(faces) == 0:
59 print " Faces:", faces
62 face_scores = [face['score'] for face in faces]
63 face_rectangles = [face['bounds'] for face in faces]
    [all...]
  /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...]
  /external/deqp/framework/common/
tcuTexVerifierUtil.cpp 61 void getPossibleCubeFaces (const Vec3& coord, const IVec3& bits, CubeFace* faces, int& numFaces)
77 if (x >= ex) faces[numFaces++] = CUBEFACE_POSITIVE_X;
78 if (x <= ex) faces[numFaces++] = CUBEFACE_NEGATIVE_X;
82 if (y >= ey) faces[numFaces++] = CUBEFACE_POSITIVE_Y;
83 if (y <= ey) faces[numFaces++] = CUBEFACE_NEGATIVE_Y;
87 if (z >= ez) faces[numFaces++] = CUBEFACE_POSITIVE_Z;
88 if (z <= ez) faces[numFaces++] = CUBEFACE_NEGATIVE_Z;
92 // One or more components are equal (or within error bounds). Allow all faces where major axis is not zero.
95 faces[numFaces++] = CUBEFACE_NEGATIVE_X;
96 faces[numFaces++] = CUBEFACE_POSITIVE_X
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/legacy/
LegacyFaceDetectMapper.java 87 public void onFaceDetection(Camera.Face[] faces, Camera camera) {
88 int lengthFaces = faces == null ? 0 : faces.length;
91 mFaces = faces;
95 "onFaceDetection - Ignored some incoming faces since" +
101 Log.v(TAG, "onFaceDetection - read " + lengthFaces + " faces");
114 * will have the latest faces detected as reflected by the camera1 callbacks.</p>
195 * {@code statistics.faces} and {@code statistics.faceDetectMode}.
198 * {@link #mapResultFaces} will have the latest faces as reflected by the camera1 callbacks.</p>
201 * the camera will still run face detection in the background, but no faces will be reporte
211 Camera.Face[] faces, previousFaces; local
    [all...]
  /hardware/ti/omap4-aah/camera/OMXCameraAdapter/
OMXFD.cpp 244 CAMHAL_LOGVB("Faces detected %d",
307 camera_face_t *faces; local
320 if ( (0 < metadataResult->number_of_faces) && (NULL != metadataResult->faces) ) {
321 free(metadataResult->faces);
323 metadataResult->faces = NULL;
330 faces = ( camera_face_t * ) malloc(sizeof(camera_face_t)*faceData->ulFaceCount);
331 if ( NULL == faces ) {
389 //For real faces, it is seen that the h/w passes a score >=80
390 //For false faces, we seem to get even a score of 70 sometimes.
408 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
  /hardware/qcom/msm8x84/original-kernel-headers/media/
msm_fd.h 21 * @face_cnt: Detected faces.
57 * struct msm_fd_result - Structure contain detected faces result.
59 * @face_cnt: Number of result faces, driver can modify this value (to smaller)
71 * struct msm_fd_result32 - Compat structure contain detected faces result.
73 * @face_cnt: Number of result faces, driver can modify this value (to smaller)
  /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/Camera2/src/com/android/camera/ui/
FaceView.java 51 // to avoid rapid changes in state (eg, flickering between has faces and
52 // not having faces)
86 public void setFaces(Face[] faces) {
88 Log.v(TAG, "Num of faces=" + faces.length);
92 if ((faces.length > 0 && mFaces.length == 0)
93 || (faces.length == 0 && mFaces.length > 0)) {
94 mPendingFaces = faces;
106 mFaces = faces;
  /developers/build/prebuilts/gradle/WatchFace/Application/src/main/res/values/
base-strings.xml 24 This sample demonstrates how to create watch faces for android wear and includes a phone app
25 and a wearable app. The wearable app has a variety of watch faces including analog, digital,
  /developers/samples/android/wearable/wear/WatchFace/
template-params.xml 38 This sample demonstrates how to create watch faces for android wear and includes a phone app
39 and a wearable app. The wearable app has a variety of watch faces including analog, digital,
  /development/samples/browseable/WatchFace/Application/res/values/
base-strings.xml 24 This sample demonstrates how to create watch faces for android wear and includes a phone app
25 and a wearable app. The wearable app has a variety of watch faces including analog, digital,
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
FaceSquareFilter.java 54 .addInputPort("faces", Signature.PORT_REQUIRED, facesType)
66 FrameValues facesFrame = getConnectedInputPort("faces").pullFrame().asFrameValues();
67 Face[] faces = (Face[]) facesFrame.getValues(); local
72 // For every face in faces, draw a white rect around the
74 drawBoxes(pixels, faces, dims);
82 public void drawBoxes(byte[] pixels, Face[] faces, int[] dims) {
83 for(int i = 0; i < faces.length; i++) {
84 Rect tempRect = faces[i].rect;
  /cts/tests/tests/widget/src/android/widget/cts/
GalleryCtsActivity.java 75 R.drawable.faces,
78 R.drawable.faces,
81 R.drawable.faces,
  /developers/samples/android/wearable/wear/AlwaysOn/
template-params.xml 70 In ambient mode, this app follows best practices by keeping most pixels black, avoiding large blocks of white pixels, using only black and white, and disabling anti-aliasing (following the [design guidelines for Watch Faces][2]).
74 As always, you will still want to apply the [performance guidelines][3] outlined in the Watch Faces documention to your app.
77 [2]: https://developer.android.com/training/wearables/watch-faces/designing.html#DesignGuidelines
78 [3]: https://developer.android.com/training/wearables/watch-faces/performance.html
  /packages/apps/Camera/res/raw/
goofy_face.graph 118 @connect faceTracker[faces] => metarotate[faces];
119 @connect metarotate[faces] => goofyrenderer[faces];
  /packages/apps/Camera2/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];

Completed in 1882 milliseconds

1 2 3 4 5 6 7 8 91011>>