Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Android人臉檢測的開發實例

Android人臉檢測的開發實例

編輯:Android開發實例

       Android中可以直接在位圖上進行人臉檢測。Android SDK為人臉檢測提供了兩個類,分別是android.media.FaceDetector和android.media.FaceDetector.Face。

       所謂人臉檢測就是指從一副圖片或者一幀視頻中標定出所有人臉的位置和尺寸。人臉檢測是人臉識別系統中的一個重要環節,也可以獨立應用於視頻監控。在數字媒體日益普及的今天,利用人臉檢測技術還可以幫助我們從海量圖片數據中快速篩選出包含人臉的圖片。 在目前的數碼相機中,人臉檢測可以用來完成自動對焦,即“臉部對焦”。“臉部對焦”是在自動曝光和自動對焦發明後,二十年來最重要的一次攝影技術革新。家用數碼相機,占絕大多數的照片是以人為拍攝主體的,這就要求相機的自動曝光和對焦以人物為基准。

       構建一個人臉檢測的Activity

       你可以構建一個通用的Android Activity,我們擴展了基類ImageView,成為MyImageView,而我們需要進行檢測的包含人臉的位圖文件必須是565格式,API才能正常工作。被檢測出來的人臉需要一個置信測度(confidence measure),這個措施定義在android.media.FaceDetector.Face.CONFIDENCE_THRESHOLD。

       最重要的方法實現在setFace(),它將FaceDetector對象實例化,同時調用findFaces,結果存放在faces裡,人臉的中點轉移到MyImageView。代碼如下:

Java代碼
  1. public class TutorialOnFaceDetect1 extends Activity {     
  2. private MyImageView mIV;     
  3. private Bitmap mFaceBitmap;     
  4. private int mFaceWidth = 200;     
  5. private int mFaceHeight = 200;     
  6. private static final int MAX_FACES = 1;     
  7. private static String TAG = "TutorialOnFaceDetect";     
  8.      
  9. @Override    
  10. public void onCreate(Bundle savedInstanceState) {     
  11. super.onCreate(savedInstanceState);     
  12.      
  13. mIV = new MyImageView(this);     
  14. setContentView(mIV, new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));     
  15.      
  16. // load the photo     
  17. Bitmap b = BitmapFactory.decodeResource(getResources(), R.drawable.face3);     
  18. mFaceBitmap = b.copy(Bitmap.Config.RGB_565, true);     
  19. b.recycle();     
  20.      
  21. mFaceWidth = mFaceBitmap.getWidth();     
  22. mFaceHeight = mFaceBitmap.getHeight();     
  23. mIV.setImageBitmap(mFaceBitmap);     
  24.      
  25. // perform face detection and set the feature points setFace();     
  26.      
  27. mIV.invalidate();     
  28. }     
  29.      
  30. public void setFace() {     
  31. FaceDetector fd;     
  32. FaceDetector.Face [] faces = new FaceDetector.Face[MAX_FACES];     
  33. PointF midpoint = new PointF();     
  34. int [] fpx = null;     
  35. int [] fpy = null;     
  36. int count = 0;     
  37.      
  38. try {     
  39. fd = new FaceDetector(mFaceWidth, mFaceHeight, MAX_FACES);     
  40. count = fd.findFaces(mFaceBitmap, faces);     
  41. } catch (Exception e) {     
  42. Log.e(TAG, "setFace(): " + e.toString());     
  43. return;     
  44. }     
  45.      
  46. // check if we detect any faces     
  47. if (count > 0) {     
  48. fpx = new int[count];     
  49. fpy = new int[count];     
  50.      
  51. for (int i = 0; i < count; i++) {     
  52. try {     
  53. faces<I>.getMidPoint(midpoint);     
  54.      
  55. fpx = (int)midpoint.x;     
  56. fpy = (int)midpoint.y;     
  57. } catch (Exception e) {     
  58. Log.e(TAG, "setFace(): face " + i + ": " + e.toString());     
  59. }     
  60. }     
  61. }     
  62.      
  63. mIV.setDisplayPoints(fpx, fpy, count, 0);     
  64. }     
  65. }  

       接下來的代碼中,我們在MyImageView中添加setDisplayPoints() ,用來在被檢測出的人臉上標記渲染。

Java代碼
  1. public class TutorialOnFaceDetect1 extends Activity {     
  2. private MyImageView mIV;     
  3. private Bitmap mFaceBitmap;     
  4. private int mFaceWidth = 200;     
  5. private int mFaceHeight = 200;     
  6. private static final int MAX_FACES = 1;     
  7. private static String TAG = "TutorialOnFaceDetect";     
  8.      
  9. @Override    
  10. public void onCreate(Bundle savedInstanceState) {     
  11. super.onCreate(savedInstanceState);     
  12.      
  13. mIV = new MyImageView(this);     
  14. setContentView(mIV, new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));     
  15.      
  16. // load the photo     
  17. Bitmap b = BitmapFactory.decodeResource(getResources(), R.drawable.face3);     
  18. mFaceBitmap = b.copy(Bitmap.Config.RGB_565, true);     
  19. b.recycle();     
  20.      
  21. mFaceWidth = mFaceBitmap.getWidth();     
  22. mFaceHeight = mFaceBitmap.getHeight();     
  23. mIV.setImageBitmap(mFaceBitmap);     
  24.      
  25. // perform face detection and set the feature points setFace();     
  26.      
  27. mIV.invalidate();     
  28. }     
  29.      
  30. public void setFace() {     
  31. FaceDetector fd;     
  32. FaceDetector.Face [] faces = new FaceDetector.Face[MAX_FACES];     
  33. PointF midpoint = new PointF();     
  34. int [] fpx = null;     
  35. int [] fpy = null;     
  36. int count = 0;     
  37.      
  38. try {     
  39. fd = new FaceDetector(mFaceWidth, mFaceHeight, MAX_FACES);     
  40. count = fd.findFaces(mFaceBitmap, faces);     
  41. } catch (Exception e) {     
  42. Log.e(TAG, "setFace(): " + e.toString());     
  43. return;     
  44. }     
  45.      
  46. // check if we detect any faces     
  47. if (count > 0) {     
  48. fpx = new int[count];     
  49. fpy = new int[count];     
  50.      
  51. for (int i = 0; i < count; i++) {     
  52. try {     
  53. faces<I>.getMidPoint(midpoint);     
  54.      
  55. fpx = (int)midpoint.x;     
  56. fpy = (int)midpoint.y;     
  57. } catch (Exception e) {     
  58. Log.e(TAG, "setFace(): face " + i + ": " + e.toString());     
  59. }     
  60. }     
  61. }     
  62.      
  63. mIV.setDisplayPoints(fpx, fpy, count, 0);     
  64. }     
  65. }  

       多人臉檢測

       通過FaceDetector可以設定檢測到人臉數目的上限。比如設置最多只檢測10張臉:

Java代碼
  1. private static final int MAX_FACES = 10;   

       下圖展示了檢測到多張人臉的情況:

 Android多人臉檢測

       定位眼睛中心位置

       Android人臉檢測返回其他有用的信息,例同時會返回如eyesDistance,pose,以及confidence。我們可以通過eyesDistance來定位眼睛的中心位置。

       下面的代碼中,我們將setFace()放在doLengthyCalc()中。

Java代碼
  1. public class TutorialOnFaceDetect extends Activity {     
  2. private MyImageView mIV;     
  3. private Bitmap mFaceBitmap;     
  4. private int mFaceWidth = 200;     
  5. private int mFaceHeight = 200;     
  6. private static final int MAX_FACES = 10;     
  7. private static String TAG = "TutorialOnFaceDetect";     
  8. private static boolean DEBUG = false;     
  9.      
  10. protected static final int GUIUPDATE_SETFACE = 999;     
  11. protected Handler mHandler = new Handler(){     
  12. // @Override     
  13. public void handleMessage(Message msg) {     
  14. mIV.invalidate();     
  15.      
  16. super.handleMessage(msg);     
  17. }     
  18. };     
  19.      
  20. @Override    
  21. public void onCreate(Bundle savedInstanceState) {     
  22. super.onCreate(savedInstanceState);     
  23.      
  24. mIV = new MyImageView(this);     
  25. setContentView(mIV, new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));     
  26.      
  27. // load the photo     
  28. Bitmap b = BitmapFactory.decodeResource(getResources(), R.drawable.face3);     
  29. mFaceBitmap = b.copy(Bitmap.Config.RGB_565, true);     
  30. b.recycle();     
  31.      
  32. mFaceWidth = mFaceBitmap.getWidth();     
  33. mFaceHeight = mFaceBitmap.getHeight();     
  34. mIV.setImageBitmap(mFaceBitmap);     
  35. mIV.invalidate();     
  36.      
  37. // perform face detection in setFace() in a background thread     
  38. doLengthyCalc();     
  39. }     
  40.      
  41. public void setFace() {     
  42. FaceDetector fd;     
  43. FaceDetector.Face [] faces = new FaceDetector.Face[MAX_FACES];     
  44. PointF eyescenter = new PointF();     
  45. float eyesdist = 0.0f;     
  46. int [] fpx = null;     
  47. int [] fpy = null;     
  48. int count = 0;     
  49.      
  50. try {     
  51. fd = new FaceDetector(mFaceWidth, mFaceHeight, MAX_FACES);     
  52. count = fd.findFaces(mFaceBitmap, faces);     
  53. } catch (Exception e) {     
  54. Log.e(TAG, "setFace(): " + e.toString());     
  55. return;     
  56. }     
  57.      
  58. // check if we detect any faces     
  59. if (count > 0) {     
  60. fpx = new int[count * 2];     
  61. fpy = new int[count * 2];     
  62.      
  63. for (int i = 0; i < count; i++) {     
  64. try {     
  65. faces<I>.getMidPoint(eyescenter);     
  66. eyesdist = faces<I>.eyesDistance();     
  67.      
  68. // set up left eye location     
  69. fpx[2 * i] = (int)(eyescenter.x - eyesdist / 2);     
  70. fpy[2 * i] = (int)eyescenter.y;     
  71.      
  72. // set up right eye location     
  73. fpx[2 * i + 1] = (int)(eyescenter.x + eyesdist / 2);     
  74. fpy[2 * i + 1] = (int)eyescenter.y;     
  75.      
  76. if (DEBUG) {     
  77. Log.e(TAG, "setFace(): face " + i + ": confidence = " + faces<I>.confidence()     
  78. + ", eyes distance = " + faces<I>.eyesDistance()     
  79. + ", pose = ("+ faces<I>.pose(FaceDetector.Face.EULER_X) + ","    
  80. + faces<I>.pose(FaceDetector.Face.EULER_Y) + ","    
  81. + faces<I>.pose(FaceDetector.Face.EULER_Z) + ")"    
  82. + ", eyes midpoint = (" + eyescenter.x + "," + eyescenter.y +")");     
  83. }     
  84. } catch (Exception e) {     
  85. Log.e(TAG, "setFace(): face " + i + ": " + e.toString());     
  86. }     
  87. }     
  88. }     
  89.      
  90. mIV.setDisplayPoints(fpx, fpy, count * 2, 1);     
  91. }     
  92.      
  93. private void doLengthyCalc() {     
  94. Thread t = new Thread() {     
  95. Message m = new Message();     
  96.      
  97. public void run() {     
  98. try {     
  99. setFace();     
  100. m.what = TutorialOnFaceDetect.GUIUPDATE_SETFACE;     
  101. TutorialOnFaceDetect.this.mHandler.sendMessage(m);     
  102. } catch (Exception e) {     
  103. Log.e(TAG, "doLengthyCalc(): " + e.toString());     
  104. }     
  105. }     
  106. };     
  107.      
  108. t.start();     
  109. }     
  110. }  

       下圖展示了定位眼睛中心位置的效果:

人臉檢測-定位眼睛中心位置

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved