/external/opencv3/samples/cpp/tutorial_code/objectDetection/ |
objectDetection.cpp | 30 if( !eyes_cascade.load( eyes_cascade_name ) ){ printf("--(!)Error loading eyes cascade\n"); return -1; }; 71 std::vector<Rect> eyes; local 73 //-- In each face, detect eyes 74 eyes_cascade.detectMultiScale( faceROI, eyes, 1.1, 2, 0 |CASCADE_SCALE_IMAGE, Size(30, 30) ); 76 for ( size_t j = 0; j < eyes.size(); j++ ) 78 Point eye_center( faces[i].x + eyes[j].x + eyes[j].width/2, faces[i].y + eyes[j].y + eyes[j].height/2 ); 79 int radius = cvRound( (eyes[j].width + eyes[j].height)*0.25 ) [all...] |
objectDetection2.cpp | 4 * @brief A simplified version of facedetect.cpp, show how to load a cascade classifier and how to find objects (Face + eyes) in a video stream - Using LBP here 36 if( !eyes_cascade.load( eyes_cascade_name ) ){ printf("--(!)Error loading eyes cascade\n"); return -1; }; 77 std::vector<Rect> eyes; local 79 //-- In each face, detect eyes 80 eyes_cascade.detectMultiScale( faceROI, eyes, 1.1, 2, 0 |CASCADE_SCALE_IMAGE, Size(30, 30) ); 81 if( eyes.size() == 2) 87 for( size_t j = 0; j < eyes.size(); j++ ) 88 { //-- Draw the eyes 89 Point eye_center( faces[i].x + eyes[j].x + eyes[j].width/2, faces[i].y + eyes[j].y + eyes[j].height/2 ) [all...] |
/external/opencv3/samples/cpp/ |
facial_features.cpp | 5 * Haarcascade classifiers for face, eyes, nose and mouth 51 eye_cascade_path = (doesCmdOptionExist(args, "-eyes")) ? getCommandOption(args, "-eyes") : ""; 97 "The program detects a face and eyes, nose and mouth inside the face." 106 "\t-eyes : Specify the haarcascade classifier for eye detection.\n" 112 "(1) ./cpp-example-facial_features image.jpg face.xml -eyes eyes.xml -mouth mouth.xml\n" 113 "\tThis will detect the face, eyes and mouth in image.jpg.\n" 119 cout << " \n\nThe classifiers for face and eyes can be downloaded from : " 145 // Eyes, nose and mouth will be detected inside the face (region of interest 156 vector<Rect_<int> > eyes; local [all...] |
/external/selinux/policycoreutils/mcstrans/share/examples/nato/ |
README | 6 cp eyes-only.conf /etc/selinux/mls/mcstrand.d
|
nato.test | 4 NATO CONFIDENTIAL NATO EYES ONLY==s4:c1,c200.c204,c206.c218,c220.c222,c224.c238,c240.c256,c259,c260,c262.c267,c270.c273,c275.c277,c279.c287,c289.c297,c299,c301.c307,c309,c311.c330,c334.c364,c367.c377,c379,c380,c382.c386,c388.c405,c408.c422,c424.c429,c431.c511 7 NATO CONFIDENTIAL DEU EYES ONLY-NATO SECRET DEU EYES ONLY==s4:c1,c200.c257,c259.c511-s5:c1,c200.c257,c259.c511
|
setrans.conf | 20 Include=/etc/selinux/mls/setrans.d/eyes-only.conf
|
/external/opencv3/doc/tutorials/objdetect/cascade_classifier/ |
cascade_classifier.markdown | 53 if( !eyes_cascade.load( eyes_cascade_name ) ){ printf("--(!)Error loading eyes cascade\n"); return -1; }; 94 std::vector<Rect> eyes; 96 //-- In each face, detect eyes 97 eyes_cascade.detectMultiScale( faceROI, eyes, 1.1, 2, 0 |CASCADE_SCALE_IMAGE, Size(30, 30) ); 99 for( size_t j = 0; j < eyes.size(); j++ ) 101 Point eye_center( faces[i].x + eyes[j].x + eyes[j].width/2, faces[i].y + eyes[j].y + eyes[j].height/2 ); 102 int radius = cvRound( (eyes[j].width + eyes[j].height)*0.25 ) [all...] |
/prebuilts/tools/common/m2/repository/com/google/android/apps/common/testing/accessibility/framework/accessibility-test-framework/2.0/ |
accessibility-test-framework-2.0.pom | 12 <url>https://code.google.com/p/eyes-free/</url> 44 <connection>scm:svn:http://eyes-free.googlecode.com/svn/trunk/</connection> 45 <developerConnection>scm:svn:https://eyes-free.googlecode.com/svn/trunk/</developerConnection> 46 <url>https://code.google.com/p/eyes-free/source/browse</url>
|
/packages/apps/UnifiedEmail/tests/src/com/google/android/mail/common/base/ |
StringUtilTest.java | 26 // Unicode Character 'KISSING CAT FACE WITH CLOSED EYES' (U+1F63D) 30 // Unicode Character 'KISSING CAT FACE WITH CLOSED EYES' (U+1F63D)
|
/external/guice/core/test/com/google/inject/ |
ModuleTest.java | 41 return obj.getClass() == D.class; // we're all equal in the eyes of guice
|
/external/opencv3/doc/py_tutorials/py_objdetect/py_face_detection/ |
py_face_detection.markdown | 38 property that the region of the eyes is often darker than the region of the nose and cheeks. The 39 second feature selected relies on the property that the eyes are darker than the bridge of the nose. 91 eyes, smile etc. Those XML files are stored in opencv/data/haarcascades/ folder. Let's create face 108 detection on this ROI (since eyes are always on the face !!! ). 115 eyes = eye_cascade.detectMultiScale(roi_gray) 116 for (ex,ey,ew,eh) in eyes:
|
/cts/tests/tests/text/src/android/text/cts/ |
EmojiConstants.java | 422 0x1F440, // EYES 666 0x1F601, // GRINNING FACE WITH SMILING EYES 669 0x1F604, // SMILING FACE WITH OPEN MOUTH AND SMILING EYES 671 0x1F606, // SMILING FACE WITH OPEN MOUTH AND TIGHTLY-CLOSED EYES 673 0x1F60A, // SMILING FACE WITH SMILING EYES 676 0x1F60D, // SMILING FACE WITH HEART-SHAPED EYES 683 0x1F61A, // KISSING FACE WITH CLOSED EYES 685 0x1F61D, // FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES 704 0x1F638, // GRINNING CAT FACE WITH SMILING EYES 707 0x1F63B, // SMILING CAT FACE WITH HEART-SHAPED EYES [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/ |
mainthread_jank_stats.py | 8 # USER_PERCEIVABLE_DELAY_THRESHOLD_MS. Human eyes can perceive delay at low as
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/doc/ |
index.rst | 24 This RSA implementation has seen the eyes of a security expert, and it
|
/external/tlsdate/ |
TODO | 15 17) find others to audit it - we need more eyes!
|
/frameworks/base/media/java/android/media/ |
FaceDetector.java | 54 * Sets the position of the mid-point between the eyes. 63 * Returns the distance between the eyes.
|
/external/unicode/ |
emoji-data.txt | 150 1F440 ; Emoji # 6.0 [1] (?) EYES 184 1F601..1F610 ; Emoji # 6.0 [16] (?..?) GRINNING FACE WITH SMILING EYES..NEUTRAL FACE 191 1F619 ; Emoji # 6.1 [1] (?) KISSING FACE WITH SMILING EYES 192 1F61A ; Emoji # 6.0 [1] (?) KISSING FACE WITH CLOSED EYES 206 1F643..1F644 ; Emoji # 8.0 [2] (?..?) UPSIDE-DOWN FACE..FACE WITH ROLLING EYES 295 1F440 ; Emoji_Presentation # 6.0 [1] (?) EYES 308 1F601..1F610 ; Emoji_Presentation # 6.0 [16] (?..?) GRINNING FACE WITH SMILING EYES..NEUTRAL FACE 315 1F619 ; Emoji_Presentation # 6.1 [1] (?) KISSING FACE WITH SMILING EYES 316 1F61A ; Emoji_Presentation # 6.0 [1] (?) KISSING FACE WITH CLOSED EYES 330 1F643..1F644 ; Emoji_Presentation # 8.0 [2] (?..?) UPSIDE-DOWN FACE..FACE WITH ROLLING EYES [all...] |
/external/selinux/policycoreutils/mcstrans/man/man8/ |
setrans.conf.8 | 44 word(s) that may follow member(s) of a modifier group (ex. USA EYES ONLY).
|
/external/opencv3/doc/py_tutorials/py_calib3d/py_epipolar_geometry/ |
py_epipolar_geometry.markdown | 18 answer is to use more than one camera. Our eyes works in similar way where we use two cameras (two 19 eyes) which is called stereo vision. So let's see what OpenCV provides in this field.
|
/external/opencv3/doc/py_tutorials/py_core/py_basic_ops/ |
py_basic_ops.markdown | 105 and search for eyes inside it instead of searching whole image. It improves accuracy (because eyes
|
/packages/apps/LegacyCamera/res/values-en-rGB/ |
strings.xml | 107 <string name="effect_goofy_face_big_eyes" msgid="3945182409691408412">"Big eyes"</string> 111 <string name="effect_goofy_face_small_eyes" msgid="1070355596290331271">"Small eyes"</string>
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/ |
FileChannelLockingTest.java | 44 private final String CONTENT = "The best things in life are nearest: Breath in your nostrils, light in your eyes, "
|
/packages/apps/LegacyCamera/res/values/ |
strings.xml | 290 <!-- Effect setting item that makes eyes big. [CHAR LIMIT=14] --> 291 <string name="effect_goofy_face_big_eyes">Big eyes</string> 298 <!-- Effect setting item that makes eyes small. [CHAR LIMIT=14] --> 299 <string name="effect_goofy_face_small_eyes">Small eyes</string>
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/egg/ |
MLand.java | [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/ |
Shakespeare.java | 32 "Of hostile paces: those opposed eyes," + 181 "not a Jew eyes? hath not a Jew hands, organs," +
|