博碩士論文 105522068 詳細資訊




以作者查詢圖書館館藏 以作者查詢臺灣博碩士 以作者查詢全國書目 勘誤回報 、線上人數:164 、訪客IP:18.216.173.64
姓名 曾煒婷(Wei-Ting Tseng)  查詢紙本館藏   畢業系所 資訊工程學系
論文名稱
(Turn Prediction for Special Intersections and Its Case Study)
相關論文
★  Dynamic Overlay Construction for Mobile Target Detection in Wireless Sensor Networks★ 車輛導航的簡易繞路策略
★ 使用傳送端電壓改善定位★ 利用車輛分類建構車載網路上的虛擬骨幹
★ Why Topology-based Broadcast Algorithms Do Not Work Well in Heterogeneous Wireless Networks?★ 針對移動性目標物的有效率無線感測網路
★ 適用於無線隨意網路中以關節點為基礎的分散式拓樸控制方法★ A Review of Existing Web Frameworks
★ 將感測網路切割成貪婪區塊的分散式演算法★ 無線網路上Range-free的距離測量
★ Inferring Floor Plan from Trajectories★ An Indoor Collaborative Pedestrian Dead Reckoning System
★ Dynamic Content Adjustment In Mobile Ad Hoc Networks★ 以影像為基礎的定位系統
★ 大範圍無線感測網路下分散式資料壓縮收集演算法★ 車用WiFi網路中的碰撞分析
檔案 [Endnote RIS 格式]    [Bibtex 格式]    [相關文章]   [文章引用]   [完整記錄]   [館藏目錄]   [檢視]  [下載]
  1. 本電子論文使用權限為同意立即開放。
  2. 已達開放權限電子全文僅授權使用者為學術研究之目的,進行個人非營利性質之檢索、閱讀、列印。
  3. 請遵守中華民國著作權法之相關規定,切勿任意重製、散佈、改作、轉貼、播送,以免觸法。

摘要(中) 隨著人口成長所帶來的影響使得交通繁忙進而導致交通事故不斷增加,尤其在特別的路口,如交通量大、路口設計不良等等,更容易導致交通事故的發生。在這篇論文當中,我們提出一個轉彎預測演算法去預測車輛在特別的路口(T字型、Y字型或超過四條路口交會)將會行駛於哪一條道路,本系統使用路口雷達來蒐集車輛的動態資訊,並用蒐集到的資料計算出車輛相對於道路的偏轉角度,再以平滑技術來過濾掉偏轉角度中較大起伏的噪音數值。在預測系統中,我們使用袋裝與隨機森林演算法來建構預測模型,來預測車輛在未來相對於道路的偏轉角度,進而判斷該車輛未來將行駛於哪一條道路,並在必要時警示其他車輛減少交通事故的發生。為了評估預測模型的效能,實驗中我們採用雷達蒐集位於高雄凱旋路口及鎮興路口的真實資料集,實驗結果顯示隨機森林演算法在所有資料集中有最高的準確率。
摘要(英) The effect of growing population brings heavy traffic which in turn leads to increased number of traffic accidents. In particular, the majority of traffic accidents happen at special intersections in situations such as heavy traffic, poor intersection design, etc. In this thesis, we propose a turn prediction system to predict which road a vehicle will take at special intersection, e.g., T-junction, Y-junction, or junction where more than 4 roads meet. The proposed system uses the radar installed at the intersection to collect vehicle dynamics. The collected data is processed to calculate deflection angles of vehicles corresponding to the road. The smoothing technique is adopted to filter the noise of calculated deflection angles. The ensemble methods are utilized to construct the model to predict future deflection angles of vehicles corresponding to the road. According to the predicted deflection angle, we can predict which road a vehicle will take at a special intersection and alert other vehicles when necessary. To assess the performance of the model prediction, a real-world experiment is carried out, which utilizes radar to collect the dataset at Kaixuan 4th Rd. and Zhenxing Rd., Qianzhen Dist., Kaohsiung City, Taiwan. The experiment results show that the accuracy of the Random Forest algorithm is the highest among all datasets.
關鍵字(中) ★ 機器學習
★ 轉彎預測
關鍵字(英)
論文目次 1 Introduction 1
2 RelatedWork 4
2.1 Image-based Path Prediction . . . . . . . . . . . . . . . . . . . . . . . . . . 4
2.2 Non Image-based Path Prediction . . . . . . . . . . . . . . . . . . . . . . . 5
2.2.1 GPS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
2.2.2 Digital Map . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
2.2.3 IMU . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
3 Preliminary 9
3.1 Smoothing techniques . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
3.2 Machine learning techniques . . . . . . . . . . . . . . . . . . . . . . . . . . 9
3.2.1 Regression techniques . . . . . . . . . . . . . . . . . . . . . . . . . . 10
3.2.2 Classi cation techniques . . . . . . . . . . . . . . . . . . . . . . . . 11
3.2.3 Hybrid techniques . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
4 Design 17
4.1 Data Collection . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
4.2 Internal Calculation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
4.3 Data Smoothing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
4.4 Turn Prediction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
4.4.1 Data Extraction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
4.4.2 Model Construction . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
5 Performance 27
iii
5.1 Data Collection . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
5.2 Evaluation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
5.2.1 Performance Metrics . . . . . . . . . . . . . . . . . . . . . . . . . . 29
5.2.2 Experimental Results . . . . . . . . . . . . . . . . . . . . . . . . . . 32
6 Conclusions 40
Reference 41
參考文獻 [1] T. Anagnostopoulos, C. B. Anagnostopoulos, S. Hadjiefthymiades, A. Kalousis, and
M. Kyriakakos. Path prediction through data mining. In IEEE International Con-
ference on Pervasive Services, 2007.
[2] H. Andersen, Z. J. Chong, Y. H. Eng, S. Pendleton, and M. H. Ang. Geometric path
tracking algorithm for autonomous driving in pedestrian environment. In 2016 IEEE
International Conference on Advanced Intelligent Mechatronics (AIM), 2016.
[3] Eric Bauer and Ron Kohavi. An empirical comparison of voting classi cation algo-
rithms: Bagging, boosting, and variants. Machine learning, 1999.
[4] Leo Breiman. Random forests. Machine learning, 2001.
[5] D. Caveney. Numerical integration for future vehicle path prediction. In 2007 Amer-
ican Control Conference, 2007.
[6] D. Caveney. Vehicular path prediction for cooperative driving applications through
digital map and dynamic vehicle model fusion. In 2009 IEEE 70th Vehicular Tech-
nology Conference Fall, 2009.
[7] A. Chusyairi, N. S. P. Ramadar, and Bagio. The use of exponential smoothing
method to predict missing service e-report. In 2017 2nd International conferences
on Information Technology, Information Systems and Electrical Engineering (ICI-
TISEE), 2017.
[8] David R Cox. The regression analysis of binary sequences. Journal of the Royal
Statistical Society. Series B (Methodological), 1958.
41
[9] N. Deo, A. Rangesh, and M. M. Trivedi. How would surrounding vehicles move? a
uni ed framework for maneuver classi cation and motion prediction. IEEE Trans-
actions on Intelligent Vehicles, 2018.
[10] Thomas G Dietterich. Ensemble methods in machine learning. In International
workshop on multiple classi er systems. Springer, 2000.
[11] Clif Droke. Moving averages simpli ed. Marketplace Books, 2001.
[12] Huanzhen Fan, Li Ai, Gongjing Yu, Hongzheng Fang, and Kai Luo. Lifetime pre-
diction based on opitimal loess smoothing and ukf for lithium-ion batteries. In 2015
Prognostics and System Health Management Conference (PHM), 2015.
[13] T. Gandhi and M. M. Trivedi. Image based estimation of pedestrian orientation for
improving path prediction. In 2008 IEEE Intelligent Vehicles Symposium, 2008.
[14] Michael F Goodchild. Geographic information system. In Encyclopedia of Database
Systems, pages 1231{1236. Springer, 2009.
[15] A Shalom Hakkert and David Mahalel. Estimating the number of accidents at inter-
sections from a knowledge of the trac
ows on the approaches. Accident Analysis
& Prevention, 1978.
[16] Tin Kam Ho. Random decision forests. In Proceedings of 3rd International Confer-
ence on Document Analysis and Recognition, 1995.
[17] P. M. Hsu and Z. W. Zhu. Car trajectory prediction in image processing and con-
trol manners. In 2016 IEEE International Conference on Intelligent Transportation
Engineering (ICITE), 2016.
42
[18] Jihua Huang and Han-Shue Tan. Vehicle future trajectory prediction with a dgps/ins-
based positioning system. In 2006 American Control Conference, 2006.
[19] Jin Huang and C. X. Ling. Using auc and accuracy in evaluating learning algorithms.
IEEE Transactions on Knowledge and Data Engineering, 2005.
[20] Prnay Jain, Shubham Varma, Hari Prabhat Gupta, Tanima Dutta, et al. A su-
pervised approach towards network control system modelling. In Communication
Systems and Networks (COMSNETS), 2017 9th International Conference on. IEEE,
2017.
[21] W. Kim, C. M. Kang, Y. S. Son, S. H. Lee, and C. C. Chung. Vehicle path prediction
using yaw acceleration for adaptive cruise control. IEEE Transactions on Intelligent
Transportation Systems, 2018.
[22] Ron Kohavi et al. A study of cross-validation and bootstrap for accuracy estimation
and model selection. In Ijcai. Montreal, Canada, 1995.
[23] Sotiris Kotsiantis, Dimitris Kanellopoulos, Panayiotis Pintelas, et al. Handling imbal-
anced datasets: A review. GESTS International Transactions on Computer Science
and Engineering, 2006.
[24] Y. Lin, P. Wang, and M. Ma. Intelligent transportation system(its): Concept, chal-
lenge and opportunity. In 2017 ieee 3rd international conference on big data security
on cloud (bigdatasecurity), ieee international conference on high performance and
smart computing (hpsc), and ieee international conference on intelligent data and
security (ids), 2017.
[25] P. Lytrivis, G. Thomaidis, and A. Amditis. Cooperative path prediction in vehicular
43
environments. In 2008 11th International IEEE Conference on Intelligent Trans-
portation Systems, 2008.
[26] P. Lytrivis, G. Thomaidis, M. Tsogas, and A. Amditis. An advanced cooperative path
prediction algorithm for safety applications in vehicular networks. IEEE Transactions
on Intelligent Transportation Systems, 2011.
[27] Narin Persad-Maharaj, Sean J Barbeau, Miguel A Labrador, Philip L Winters, Rafael
Perez, and Nevine Labib Georggi. Real-time travel path prediction using gps-enabled
mobile phones. In Proc. 15th World Congress on Intelligent Transportation Systems.
Citeseer, 2008.
[28] Tomaso Poggio, Harry Voorhees, and Alan Yuille. A regularized solution to edge
detection. Journal of Complexity, 1988.
[29] Z. K. Pourtaheri and S. H. Zahiri. Ensemble classi ers with improved over tting. In
2016 1st Conference on Swarm Intelligence and Evolutionary Computation (CSIEC),
2016.
[30] H. S. Tan and J. Huang. Dgps-based vehicle-to-vehicle cooperative collision warning:
Engineering feasibility viewpoints. IEEE Transactions on Intelligent Transportation
Systems, 2006.
[31] Sebastian Thrun, Mike Montemerlo, Hendrik Dahlkamp, David Stavens, Andrei
Aron, James Diebel, Philip Fong, John Gale, Morgan Halpenny, Gabriel Ho mann,
et al. Stanley: The robot that won the darpa grand challenge. Journal of eld
Robotics.
[32] R. Toledo-Moreo and M. A. Zamora-Izquierdo. Imm-based lane-change prediction
44
in highways with low-cost gps/ins. IEEE Transactions on Intelligent Transportation
Systems, 2009.
[33] S. H. Tsang, E. G. Hoare, P. S. Hall, and N. J. Clarke. Automotive radar image
processing to predict vehicle trajectory. In Proceedings 1999 International Conference
on Image Processing (Cat. 99CH36348), 1999.
[34] Tzu-Tsung Wong and Nai-Yu Yang. Dependency analysis of accuracy estimates in
k-fold cross validation. IEEE Transactions on Knowledge and Data Engineering,
2017.
[35] Xin Yan and Xiaogang Su. Linear regression analysis: theory and computing. World
Scienti c, 2009.
[36] J. Yang, H. Bao, N. Ma, and Z. Xuan. An algorithm of curved path tracking with
prediction model for autonomous vehicle. In 2017 13th International Conference on
Computational Intelligence and Security (CIS), 2017.
[37] Bee Wah Yap, Khatijahhusna Abd Rani, Hezlin Aryani Abd Rahman, Simon Fong,
Zuraida Khairudin, and Nik Nik Abdullah. An application of oversampling, under-
sampling, bagging and boosting in handling imbalanced datasets. In Proceedings
of the rst international conference on advanced data and information engineering
(DaEng-2013). Springer, 2014.
[38] Y. Yoo, K. Yun, S. Yun, J. Hong, H. Jeong, and J. Y. Choi. Visual path prediction in
complex scenes with crowded moving objects. In 2016 IEEE Conference on Computer
Vision and Pattern Recognition (CVPR), 2016.
45
[39] Tong Zhang, Bin Yu, et al. Boosting with early stopping: Convergence and consis-
tency. The Annals of Statistics, 2005.
46
指導教授 孫敏德(Min-Te Sun) 審核日期 2018-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聯絡  - 隱私權政策聲明