博碩士論文 945202023 詳細資訊




以作者查詢圖書館館藏 以作者查詢臺灣博碩士 以作者查詢全國書目 勘誤回報 、線上人數:83 、訪客IP:3.128.198.107
姓名 林莉鳳(Donna Lim)  查詢紙本館藏   畢業系所 資訊工程學系
論文名稱 快速行人偵測基於AdaBoost和樣板比對法的駕駛輔助系統
(Rapid Pedestrian Detection for Driving Assistance System using AdaBoost and Template Matching Technique)
相關論文
★ 使用視位與語音生物特徵作即時線上身分辨識★ 以影像為基礎之SMD包裝料帶對位系統
★ 手持式行動裝置內容偽變造偵測暨刪除內容資料復原的研究★ 基於SIFT演算法進行車牌認證
★ 基於動態線性決策函數之區域圖樣特徵於人臉辨識應用★ 基於GPU的SAR資料庫模擬器:SAR回波訊號與影像資料庫平行化架構 (PASSED)
★ 利用掌紋作個人身份之確認★ 利用色彩統計與鏡頭運鏡方式作視訊索引
★ 利用欄位群聚特徵和四個方向相鄰樹作表格文件分類★ 筆劃特徵用於離線中文字的辨認
★ 利用可調式區塊比對並結合多圖像資訊之影像運動向量估測★ 彩色影像分析及其應用於色彩量化影像搜尋及人臉偵測
★ 中英文名片商標的擷取及辨識★ 利用虛筆資訊特徵作中文簽名確認
★ 基於三角幾何學及顏色特徵作人臉偵測、人臉角度分類與人臉辨識★ 一個以膚色為基礎之互補人臉偵測策略
檔案 [Endnote RIS 格式]    [Bibtex 格式]    [相關文章]   [文章引用]   [完整記錄]   [館藏目錄]   [檢視]  [下載]
  1. 本電子論文使用權限為同意立即開放。
  2. 已達開放權限電子全文僅授權使用者為學術研究之目的,進行個人非營利性質之檢索、閱讀、列印。
  3. 請遵守中華民國著作權法之相關規定,切勿任意重製、散佈、改作、轉貼、播送,以免觸法。

摘要(中) 行人偵測在許多應用中扮演著重要的角色,尤其是自動車輛的安全駕駛輔助系統。這是一個富有挑戰性的題目,因為人體的動作有很大的變化性。本論文提出了一個行人偵測的駕駛輔助系統;即是在移動的車子上執行行人偵測。我們只用一支攝影機即完成整個行人偵測的過程,且準確率高、執行速度快。系統的架構包含了行人偵測模組和追蹤模組。在行人偵測模組中,我們整合了AdaBoost (Adaptive-Boosting)和樣板比對法。首先,我們利用AdaBoost方法訓練我們的行人偵測分類器,在影片中利用此分類器挑選看起來像人的區域。第二,針對這些區域來比對行人的形狀驗證是否出現行人。在追蹤模組中,我們採用CAMSHIFT (Continuous Adaptive Mean Shift) 追蹤演算法來追蹤行人。
實驗結果顯示此系統能夠接近即時的處理並且在複雜背景下擁有高度的準確率。測試的影片解析度為320 x 240每秒30個畫面,行車平均速度每小時40至50公里。由實驗可證實本論文所提出行人偵測的方法是可行且有效的。
摘要(英) Pedestrian detection plays an important role in several applications, especially in driving assistance system or autonomous vehicle. However, it is difficult to detect pedestrians because of the variations of walking style and the movement of human body over time even for the same person. In this thesis, we propose a pedestrian detection system for driving assistance system. The ultimate goal of the system is detecting pedestrian from a moving vehicle. In the proposed system, we only use a single video camera in our practice yet we can achieve fast and accurate detection results. The system consists of two main modules including pedestrian detection module and pedestrian tracking module. AdaBoost (Adaptive-Boosting) method and template matching technique are integrated in the pedestrian detection module. Firstly, we use AdaBoost to train the pedestrian detector and select pedestrian candidates over the image sequences. Secondly, we apply template matching technique to verify pedestrian appearances. In the pedestrian tracking module, we adopt CAMSHIFT (Continuously Adaptive Mean Shift) algorithm to track the mis-detected pedestrian.
The experimental results show that the system is fast and near real time. Moreover, high accuracy detection rate can be accomplished even against cluttering backgrounds. In our experiments, the test set video sequences are taken from the real scene with 320 x 240 image resolutions and the vehicle speed is 40-50 km/h in average. The results reveal that the proposed method is feasible and efficient in detecting pedestrian.
關鍵字(中) ★ 行人偵測
★ 樣板比對
★ 駕駛輔助系統
關鍵字(英) ★ template matching
★ driving assistance system
★ AdaBoost
★ pedestrian detection
論文目次 Abstract i
摘 要 ii
Acknowledgements iii
Contents iv
List of Figures vi
List of Tables viii
Chapter 1 Introduction 1
1.1 Motivation 1
1.2 Related Works 2
1.3 System Overview 5
1.4 Thesis Organization 8
Chapter 2 Pedestrian Detector 9
2.1 Feature Extraction using Haar Wavelet 9
2.2 Integral Image 10
2.3 AdaBoost Training Procedures 12
2.4 Cascaded classifier 14
Chapter 3 Verification Stage 15
3.1 Template Database 15
3.1.1 Canny Edge Detection 16
3.1.2 Distance Transform 19
3.1.3 Template Clustering 21
3.2 Template Matching 22
Chapter 4 Pedestrian Tracking 24
4.1 Color Model Transformation 24
4.1.1 RGB color model 25
4.1.2 HSV color model 26
4.1.3 RGB to HSV 27
4.2 CamShift Tracking Procedure 27
Chapter 5 Experimental Results 30
5.1 System Environment and DataSet 30
5.2 Detection Result in various environments 32
5.3 Tracking Result 35
5.4 Performance Analysis 36
5.5 Discussions 38
Chapter 6 Conclusions and Future Works 39
6.1 Conclusions 39
6.2 Future Works 40
References 41
參考文獻 [1] P. Viola and M. J. Jones, "Robust real-time face detection", in International Journal of Computer Vision, Vol. 57, no. 2, pp. 137-154, 2004.
[2] D. M. Gavrila and V. Philomin, "Real-time object detection for smart vehicle", in Proceedings of IEEE International Conference on Computer Vision and Pattern Recognition, Vol. 1, pp. 87-93, 1999.
[3] D. M. Gavrila, "Pedestrian Detection from a Moving Vehicle", in Proceedings of the European Conference on Computer Vision, pp. 37-49, 2000.
[4] C. Papageorgiou and T. Poggio, "Trainable pedestrian detection", in Proceedings of the International Conference on ICIP, Vol. 4, pp. 35-39, 1999.
[5] P. Viola, M. Jones, and D. Snow, "Detecting Pedestrians Using Patterns of Motion and Appearance", in International Journal of Computer Vision, Vol. 63, no. 2, pp. 153-161, 2005.
[6] B. Leibe, E. Seemann, and B. Schiele, "Pedestrian detection in crowded scene", in Proceeding of IEEE International Conference on Computer Vision and Pattern Recognition, Vol. 1, pp. 878-885, 2005.
[7] N. Dalal and B. Triggs, "Histograms of oriented gradients for human detection", in Proceeding of IEEE International Conference on Computer Vision and Pattern Recognition, Vol. 1, pp. 886-893, 2005.
[8] Q. Zhu, S. Avidan, M. C. Yeh, and K. T. Cheng, "Fast human detection using a cascade of histograms of oriented gradients", in Proceeding of IEEE International Conference on Computer Vision and Pattern Recognition, Vol.2, pp. 1491-1498, 2006.
[9] http://www.cs.unc.edu/~welch/kalman/index.html#Anchor-Rudolph-6296
[10] A. Cavallaro, "Tracking video objects in cluttered background", in IEEE transactions on Circuits and Systems for Video Technology, Vol. 15, no. 4, pp.575-584, 2005.
[11] V. Philomin, R. Duraiswami and L. Davis, "Pedestrian tracking from a moving vehicle", in Proceedings of the IEEE Intelligent Vehicles Symposium, pp. 350-355, 2000.
[12] http://sourceforge.net/projects/opencvlibrary/
[13] http://en.wikipedia.org/wiki/Color_models
[14] http://en.wikipedia.org/wiki/RGB_color_spaces
[15] http://en.wikipedia.org/wiki/HSV_color_spaces
[16] P. Viola and M. Jones, "Rapid object detection using a boosted cascade of simple features", in Proceeding of the IEEE International Conference on Computer Vision and Pattern Recognition, Vol. 1, pp. 1-511 – 1-518, 2001.
[17] D. M. Gavrila, "The visual analysis of human movement: A Survey", in Computer Vision and Image Understanding, Vol.73, no.1, pp.82-98, 1999.
[18] A. Mohan, C. Papageorgiou, and T. Poggio, "Example-based object detection in images by components", in IEEE Transaction on Pattern Analysis and Machine Intelligence, Vol. 23, no. 4, pp. 349-361, 2001.
[19] D. M. Gavrila and S. Munder, "Multi-cue pedestrian detection and tracking from a moving vehicle", in International Journal of Computer Vision, Vol. 73, no.1, pp. 41-59, 2007.
指導教授 范國清(Kuo-Chin Fan) 審核日期 2007-7-18
推文 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聯絡  - 隱私權政策聲明