freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

智能安防系統(tǒng)中人臉識別系統(tǒng)畢業(yè)論文-資料下載頁

2025-06-26 05:06本頁面
  

【正文】 Personal Descriptions, London, Butterworth, 1950.[5]Parker F Generated Animation of Faces. In Proceedings ACM an Conference,1972, 1:451457.[6] GoldstionR J, Harmon L D, Lesk A B, Man manchine interaction in human faceidentification. Bell Syst Tech Journal, 1972, 52:399427.[7] Kanad T, Picture processing system by puter and recognition of human face [Ph D Dissertation]. Kyoto:Kyoto University,1973.[8] Samal A,Iyengar recognition and analysis for human faces and facial expressions: A Recognition, 1992, 25(1):6577.[9]Liao W Z, Jiang J H. Image Feature Extraction Based on Kernel ICA[A]. 1st International Congress on Image and Signal Processing, CISP2008[C].2008,2:763767.[10]裴佳迪,馬超,2012. [11]:原理、方法與技術[M].北京:科學出版社,[12] X. Tang and X. Wang, Face Sketch Recognition, IEEE Trans. Circuits, Systems, and Video Technology, vol. 14, no. 1, pp. 5057, Jan. 2004[13]孫艷秋,[J].遼寧科技學院學報,2005. [14]汪永松, ,2010.[15]侯鯤,賈隆嘉,[J].科協(xié)論壇(下半月),2010.致 謝在這次畢業(yè)設計中,我得到了指導老師——賀英老師的指導和大力幫助,賀老師提供了許多對我們畢業(yè)設計非常有價值的建議和資料,并對我在這次畢業(yè)設計中遇到的問題給予及時、認真、負責的指導。賀老師淵博的專業(yè)知識、嚴謹?shù)膶W術風格和謙和的態(tài)度讓我終生難忘。感謝大學里遇到的所有老師,你們的給予我的是一生的財富,正是因為有了你們的教誨才會有我今日的成就;同時感謝父母給予我大學四年的支持,是你們的辛勤勞苦才有了我的四年大學生活;同時感謝所有給予過幫助和支持的所有人。附 錄主程序代碼及注釋:TutorialOnFaceDetect:package 。import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。public class TutorialOnFaceDetect extends Activity { private MyImageView mIV。 private Bitmap mFaceBitmap。 private int mFaceWidth = 200。 private int mFaceHeight = 200。 private static final int MAX_FACES = 10。 private static String TAG = TutorialOnFaceDetect。 private static boolean DEBUG = false。 private Button idetifyButton = null。 private Button selectButton = null。 protected static final int GUIUPDATE_SETFACE = 999。 protected Handler mHandler = new Handler() { // @Override public void handleMessage(Message msg) { ()。 (msg)。 } }。 @Override public void onCreate(Bundle savedInstanceState) { (savedInstanceState)。 // setContentView(mIV, new LayoutParams(, // ))。 setContentView()。 mIV = (MyImageView) findViewById()。 idetifyButton = (Button) findViewById()。 selectButton = (Button) findViewById()。 ((getResources(), ))。 (new OnClickListener() { @Override public void onClick(View arg0) { // load the photo //Bitmap b = (getResources(), // )。 (true)。 (true)。 Bitmap b = ()。 mFaceBitmap = (, true)。 (false)。 (false)。 mFaceWidth = ()。 mFaceHeight = ()。 (mFaceBitmap)。 // perform face detection and set the feature points setFace()。 ()。 } })。 (new OnClickListener() { @Override public void onClick(View arg0) { Intent intent = new Intent()。 ()。 (image/*)。 (returndata, true)。 startActivityForResult(intent, 0)。 } })。 } @SuppressLint(ResourceAsColor) @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { (requestCode, resultCode, data)。 Bitmap cameraBitmap = (Bitmap) ().get(data)。 cameraBitmap = resizeImage(cameraBitmap, 200, 200)。 if (cameraBitmap != null) { ()。 (cameraBitmap)。 } else { (IMAGE sNULL)。 } (resultCode)。 } public static Bitmap resizeImage(Bitmap bitmap, int w, int h) { // load the origial Bitmap Bitmap BitmapOrg = bitmap。 int width = ()。 int height = ()。 int newWidth = w。 int newHeight = h。 // calculate the scale float scaleWidth = ((float) newWidth) / width。 float scaleHeight = ((float) newHeight) / height。 // create a matrix for the manipulation Matrix matrix = new Matrix()。 // resize the Bitmap (scaleWidth, scaleHeight)。 // if you want to rotate the Bitmap // (45)。 // recreate the new Bitmap Bitmap resizedBitmap = (BitmapOrg, 0, 0, width, height, matrix, true)。 // make a Drawable from Bitmap to allow to set the Bitmap // to the ImageView, ImageButton or what ever return resizedBitmap。} public void setFace() { FaceDetector fd。 [] faces = new [MAX_FACES]。 PointF eyescenter = new PointF()。 float eyesdist = 。 int[] fpx = null。 int[] fpy = null。 int count = 0。 try { fd = new FaceDetector(mFaceWidth, mFaceHeight, MAX_FACES)。 count = (mFaceBitmap, faces)。 } catch (Exception e) { (TAG, setFace(): + ())。 return。 } // check if we detect any faces if (count 0) { fpx = new int[count * 2]。 fpy = new int[count * 2]。 for (int i = 0。 i count。 i++) { try { faces[i].getMidPoint(eyescenter)。 eyesdist = faces[i].eyesDistance()。 // set up left eye location fpx[2 * i] = (int) ( eyesdist / 2)。 fpy[2 * i] = (int) 。 // set up right eye location fpx[2 * i + 1] = (int) ( + eyesdist / 2)。 fpy[2 * i + 1] = (int) 。 if (DEBUG) (TAG, setFace(): face + i + : confidence = + faces[i].confidence() + , eyes distance = + faces[i].eyesDistance() + , pose = ( + faces[i] .pose() + , + faces[i] .pose() + , + faces[i] .pose() + ) + , eyes midpoint = ( + + , + + ))。 } catch (Exception e) { (TAG, setFace(): face + i + : + ())。 } } } (fpx, fpy, count * 2, 1)。 } private void doLengthyCalc() { Thread t = new Thread() { Message m = new Message()。 public void run() { try { setFace()。 = 。 (m)。 } catch (Exception e) { (TAG, doLengthyCalc(): + ())。 } } }。 ()。 }}
點擊復制文檔內(nèi)容
試題試卷相關推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1