博碩士論文 107552008 詳細資訊




以作者查詢圖書館館藏 以作者查詢臺灣博碩士 以作者查詢全國書目 勘誤回報 、線上人數:74 、訪客IP:3.145.41.253
姓名 陸威穎(Lu Wei-Ying)  查詢紙本館藏   畢業系所 資訊工程學系在職專班
論文名稱 狗鼻偵測與基於鼻紋的寵物狗身份辨識
(Dog′s Nose Segmentation and Nose-Print Pet Identity Recognition)
相關論文
★ 整合GRAFCET虛擬機器的智慧型控制器開發平台★ 分散式工業電子看板網路系統設計與實作
★ 設計與實作一個基於雙攝影機視覺系統的雙點觸控螢幕★ 智慧型機器人的嵌入式計算平台
★ 一個即時移動物偵測與追蹤的嵌入式系統★ 一個固態硬碟的多處理器架構與分散式控制演算法
★ 基於立體視覺手勢辨識的人機互動系統★ 整合仿生智慧行為控制的機器人系統晶片設計
★ 嵌入式無線影像感測網路的設計與實作★ 以雙核心處理器為基礎之車牌辨識系統
★ 基於立體視覺的連續三維手勢辨識★ 微型、超低功耗無線感測網路控制器設計與硬體實作
★ 串流影像之即時人臉偵測、追蹤與辨識─嵌入式系統設計★ 一個快速立體視覺系統的嵌入式硬體設計
★ 即時連續影像接合系統設計與實作★ 基於雙核心平台的嵌入式步態辨識系統
檔案 [Endnote RIS 格式]    [Bibtex 格式]    [相關文章]   [文章引用]   [完整記錄]   [館藏目錄]   至系統瀏覽論文 (2025-6-8以後開放)
摘要(中) 現代人飼養寵物的情況與日俱增,卻也因此出現更多如走失、棄養等問題,造成社會的負擔。現存的身分識別技術大多採RFID晶片植入,然而植晶的行為除了對寵物產生健康上的疑慮導致飼主意願降低以外,還必須搭配儀器的掃描,並且可能面臨植入晶片的失效,以上種種皆會造成實施上的困難。本研究中提出一套基於影像處理的寵物犬身份辨識系統,透過犬隻的鼻紋紋理特徵進行身份識別。影像中的狗鼻區域藉由U-Net深度神經網路進行偵測及分割,分割出的狗鼻區域影像結合了LBP、GLCM、GGCM等三種紋理分析演算法進行特徵擷取,並將取得的特徵以PNN進行身份辨識。我們改善了U-Net的batch normalization策略,大幅提升了鼻紋區域的影像分割性能,結合後續的決策融合PNN分類器,使得身份辨識正確性達到優異的表現。在我們自建的10隻寵物狗資料庫,我們的方法可獲得98%辨識率。本研究規劃了一個完整的寵物身份辨識流程,並使用U-Net做為影像分割的基礎,在少量學習樣本的情況下,仍具有良好的切割性能,提供正確且完整的狗鼻區域進行身份辨識。
摘要(英) Nowadays, more and more people keep pets, as a result, more problems have happened, such as loss and abandonment, etc.…, causing a burden on society as well. Most of the existing identity recognition technologies are implanting the RFID chips. However, by this way, it will not only have the health concerns about pets, but also reduce the willingness of the owners to do so; besides, the chips implanted must be scanned by the instrument, and may face the failure of the implanted chips. The above reasons cause the difficulties in implementation of identity recognition.
In this study, a pet dog identity recognition system based on image processing is proposed, which uses dog nose texture features for identity recognition. The dog-nose area in the image is detected and segmented by the U-Net deep neural network. The segmented dog-nose area image combines three texture analysis algorithms such as LBP, GLCM, and GGCM for feature extraction, and the obtained Features are identified by PNN. We improved U-Net′s batch normalization strategy, which greatly improved the image segmentation performance of the nose pattern area, combined with the subsequent decision fusion PNN classifier, so that the accuracy of identity recognition reached excellent performance. In our self-built 10 pet dog database, our method can obtain 98% recognition rate. This study planned a complete pet identity recognition process, and used U-Net as the basis for image segmentation. With a small number of learning samples, it still has good cutting performance and provides correct and complete dog nose area for identity recognition.
關鍵字(中) ★ 狗鼻紋偵測
★ 狗鼻紋辨識
★ 生物辨識
★ 決策融合
關鍵字(英) ★ U-Net
★ LBP
★ GLCM
★ GGCM
★ PNN
論文目次 摘要 i
Abstract ii
致謝 iii
目錄 iv
圖目錄 vii
表目錄 x
第一章、緒論 1
1.1 研究動機 1
1.2 研究目的 3
1.3 論文架構 3
第二章、方法回顧 4
2.1 U-Net狗鼻切割 4
2.1.1 Up-Sampling 6
2.1.2 Skip-Connection 8
2.1.3 Overlap-Tile Strategy 9
2.2 鼻紋紋理特徵擷取 10
2.2.1 Local Binary Pattern 11
2.2.2 Gray Level Co-occurrence Matrix 14
2.2.3 Gray Gradient Co-occurrence Matrix 17
2.3 鼻紋分類器 19
2.3.1 機率神經網路 20
2.3.2 多模態機率神經網路融合分類器 21
第三章、系統架構 22
3.1 鼻紋身分辨識系統架構 22
3.2 U-Net狗鼻分割 24
3.3 狗鼻紋理特徵擷取 26
3.3.1 LBP特徵擷取模組 27
3.3.2 GLCM特徵擷取模組 28
3.3.3 GGCM特徵擷取模組 29
3.4 狗鼻身份分類器 30
3.4.1 PNN紋理分類模組 30
3.4.2 PNN決策融合模組 32
3.5 系統程式合成 33
第四章、系統整合與實驗 34
4.1 實驗平台 34
4.2 資料庫建置程序 35
4.3 影像分割模型建立 36
4.4 狗鼻分割實驗 40
4.5 狗鼻身份辨識實驗 46
第五章、結論與未來展望 51
5.1 結論 51
5.2 未來展望 52
參考文獻 53
參考文獻 [1] J. Long, E. Shelhamer, and T. Darrell, "Fully convolutional networks for semantic segmentation," in 2015 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2015, pp. 3431-3440.
[2] J. T. C. Ming, N. M. Noor, O. M. Rijal, R. M. Kassim, and A. Yunus, "Enhanced automatic lung segmentation using graph cut for Interstitial Lung Disease," in 2014 IEEE Conference on Biomedical Engineering and Sciences (IECBES), 2014, pp. 17-21.
[3] J. C. M. Than, N. M. Noor, O. M. Rijal, A. Yunus, and R. M. Kassim, "Lung segmentation for HRCT thorax images using radon transform and accumulating pixel width," in 2014 IEEE REGION 10 SYMPOSIUM, 2014, pp. 157-161.
[4] H. Gao, L. Dou, W. Chen, and G. Xie, "The applications of image segmentation techniques in medical CT images," in Proceedings of the 30th Chinese Control Conference, 2011, pp. 3296-3299.
[5] P. P. Filho, P. Cortez, C. Barros, V. H. C. Albuquerque, and J. Tavares, "Novel and Powerful 3D Adaptive Crisp Active Contour Method applied in the Segmentation of CT Lung Images," Medical Image Analysis, vol. 35, pp. 503-516, 2017.
[6] Y. Qiang, X. Zhang, G. Ji, and J. Zhao, "Automated Lung Nodule Segmentation Using an Active Contour Model Based on PET/CT Images," Journal of Computational and Theoretical Nanoscience, vol. 12, 2015.
[7] A. Sevik, P. Erdogmus, and E. Yalein, "Font and Turkish Letter Recognition in Images with Deep Learning," in 2018 International Congress on Big Data, Deep Learning and Fighting Cyber Terrorism (IBIGDELFT), 2018, pp. 61-64.
[8] O. Ronneberger, P. Fischer, and T. Brox, U-Net: Convolutional Networks for Biomedical Image Segmentation vol. 9351, 2015.
[9] X. Liu, F. Xue, and L. Teng, "Surface Defect Detection Based on Gradient LBP," in 2018 IEEE 3rd International Conference on Image, Vision and Computing (ICIVC), 2018, pp. 133-137.
[10] F. Mirzapour and H. Ghassemian, "Using GLCM and Gabor filters for classification of PAN images," in 2013 21st Iranian Conference on Electrical Engineering (ICEE), 2013, pp. 1-6.
[11] K. Ubul, N. Yadikar, A. Amat, A. Aysa, and T. Yibulayin, "Uyghur document image retrieval based on gray gradient co-occurrence matrix," in 2015 Chinese Automation Congress (CAC), 2015, pp. 762-766.
[12] A. Upadhyay and S. K. Singh, "Classification of IRS LISS-III images using PNN," in 2015 2nd International Conference on Computing for Sustainable Global Development (INDIACom), 2015, pp. 416-420.
[13] Z. Tang and D. Liu, "Fuzzy multiple objectives decision fusion based on vague sets," in 2015 34th Chinese Control Conference (CCC), 2015, pp. 3563-3566.
[14] A. S. Chauhan, S. Silakari, and M. Dixit, "Image Segmentation Methods: A Survey Approach," in 2014 Fourth International Conference on Communication Systems and Network Technologies, 2014, pp. 929-933.
[15] P. Wang, P. Chen, Y. Yuan, D. Liu, Z. Huang, X. Hou, et al., "Understanding Convolution for Semantic Segmentation," in 2018 IEEE Winter Conference on Applications of Computer Vision (WACV), 2018, pp. 1451-1460.
[16] V. Dumoulin and F. Visin, "A guide to convolution arithmetic for deep learning," 2016.
[17] K. He, X. Zhang, S. Ren, and J. Sun, "Deep Residual Learning for Image Recognition," in 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2016, pp. 770-778.
[18] J. Yang and J.-Y. Yang, "Generalized K-L transform based combined feature extraction," Pattern Recognition, vol. 35, pp. 295-297, 2002.
[19] J. Yang, J.-Y. Yang, D. Zhang, and J. Lu, "Feature fusion: Parallel strategy vs. serial strategy," Pattern Recognition, vol. 36, pp. 1369-1381, 2003.
[20] L. Chengjun and H. Wechsler, "A shape- and texture-based enhanced Fisher classifier for face recognition," IEEE Transactions on Image Processing, vol. 10, pp. 598-608, 2001.
[21] V. C. Subbarayudu and M. V. N. K. Prasad, "Multimodal Biometric System," in 2008 First International Conference on Emerging Trends in Engineering and Technology, 2008, pp. 635-640.
[22] A. K. Jain and A. Ross, "Learning user-specific parameters in a multibiometric system," in Proceedings. International Conference on Image Processing, 2002, pp. I-I.
[23] 紀佩妤, "狗鼻紋理特徵擷取和犬隻身分識別," 國立中央大學通訊工程學系在職專班碩士論文, 2020.
[24] S. Ioffe and C. Szegedy, "Batch normalization: Accelerating deep network training by reducing internal covariate shift," arXiv preprint arXiv:1502.03167, 2015.
[25] A. Garcia-Garcia, S. Orts-Escolano, S. Oprea, V. Villena-Martinez, and J. Garcia-Rodriguez, "A review on deep learning techniques applied to semantic segmentation," arXiv preprint arXiv:1704.06857, 2017.
[26] D. Kingma and J. Ba, "Adam: A Method for Stochastic Optimization," International Conference on Learning Representations, 12/22 2014.
[27] M. D. Zeiler and R. Fergus, "Visualizing and Understanding Convolutional Networks," in Computer Vision – ECCV 2014, Cham, 2014, pp. 818-833.
指導教授 陳慶瀚(Pierre Chen) 審核日期 2020-6-29
推文 facebook   plurk   twitter   funp   google   live   udn   HD   myshare   reddit   netvibes   friend   youpush   delicious   baidu   
網路書籤 Google bookmarks   del.icio.us   hemidemi   myshare   

若有論文相關問題,請聯絡國立中央大學圖書館推廣服務組 TEL:(03)422-7151轉57407,或E-mail聯絡  - 隱私權政策聲明