博碩士論文 108552019 詳細資訊




以作者查詢圖書館館藏 以作者查詢臺灣博碩士 以作者查詢全國書目 勘誤回報 、線上人數:42 、訪客IP:3.144.243.184
姓名 曾義能(Yi-Neng Zeng)  查詢紙本館藏   畢業系所 資訊工程學系在職專班
論文名稱 以多層過濾影像機制降低上行頻寬使用量之研究
(A Study on Using Multi-Layer Filtering Image Mechanism to Reduce Uplink Bandwidth Usage)
相關論文
★ 以伸展樹為基礎的Android Binder Driver★ 應用增量式學習於多種農作物判釋之研究
★ 應用分類重建學習偵測航照圖幅中的新穎坵塊★ 一個建立在平行工作系統上的動態全球計算平台
★ 用權重參照計數演算法執行主動物件垃圾收集★ 一個動態負載平衡之最大可能性估算計算架構
★ 利用多項系統負載資訊進行動態P2P系統重組的策略研究★ 基於Hadoop系統的雲端應用程式特徵擷取與計算監測架構
★ 適用於大型動態分散式系統的調適性計算模型★ 一個提供彈性虛擬資料中心的雲端服務平台
★ 雲端彈性虛擬機房服務平台之資源控管中心★ 一個適用於自動供應雲端系統的動態調適計算架構
★ 線性相關工作與非相關工作的探索式排程策略★ 適用於大資料集高效率的分散式階層分群演算法
★ 混合雲端環境上的多重代理人動態調適計算管理架構★ 基於圖形的平行化最小生成樹分群演算法
檔案 [Endnote RIS 格式]    [Bibtex 格式]    [相關文章]   [文章引用]   [完整記錄]   [館藏目錄]   [檢視]  [下載]
  1. 本電子論文使用權限為同意立即開放。
  2. 已達開放權限電子全文僅授權使用者為學術研究之目的,進行個人非營利性質之檢索、閱讀、列印。
  3. 請遵守中華民國著作權法之相關規定,切勿任意重製、散佈、改作、轉貼、播送,以免觸法。

摘要(中) 在人工智慧日益普及下,透過深度學習技術能根據影像特徵對物件進行辨識、分類和偵測,藉此作為異常事件檢測的依據,然而在大規模監視影像分析中,異常事件的目標對象只佔一小部分,因此將所有監視影像上傳到伺服器進行深度學習的物件偵測時會浪費大量上行頻寬來進行傳輸而導致頻寬不足的情形,間接限制了上傳至伺服器影像的數量,因此為了解決上述問題,本研究提出了以多層過濾影像機制降低上行頻寬使用量之研究,藉由第一層的前景物件過濾器快速過濾出包含前景物件的影像來降低目標過濾器需要偵測的影像數量,第二層目標過濾器再從過濾出的影像中,透過物件偵測模型過濾出包含目標物件的影像再上傳至伺服器,藉由丟棄不包含目標物件的影像來降低上傳資料量。此外,為了提升多個過濾器的執行效率,採用多執行緒來提升過濾器執行效率以及使用 Blocking Queue 來同步過濾器之間處理速度,實驗結果發現在前景物件過濾器中使用動態過濾閾值能降低過濾錯誤率的產生,加上目標物件過濾器後能再降低前景物件過濾器造成的過濾錯誤,最後採用本研究所提出的機制,能降低約79%上行頻寬使用量同時維持2%以下過濾錯誤率。
摘要(英) With the increasing popularity of artificial intelligence, deep learning techniques can be used to identify, classify, and detect objects based on image features, which can be used as the basis for abnormal event detection. However, according to surveillance image analysis, the target objects in abnormal events only account for a small part. Uploading all the surveillance images to server for object detection waste a large amount of uplink bandwidth, which indirectly reduces the number of images uploaded to the server for detection. In order to solve the problems above, the research proposes a multi-layer filtering image mechanism to reduce the usage of uplink bandwidth. The first layer of foreground object filter quickly filters out images containing foreground objects to reduce the number of images that target object filter needs to identify. The second target filter filters out the images that do not contain the target object through the object detection model to reduce the amount of uploaded data. In addition, the research adopt multi-thread implementation to improve the execution efficiency of multiple filters and Blocking Queue to synchronize the processing speed between filters. The results found that using dynamic filter threshold in the foreground object filter reduces the filtering error rate. In addition, adding additional target object filter can reduce the filtering error caused by the foreground object filter. In consequence, the mechanism proposed by this research can reduce the usage of uplink bandwidth by about 79% while maintaining the filtering error rate below 2%.
關鍵字(中) ★ 影像過濾
★ 前景物件過濾
★ 物件偵測
★ 上行頻寬
關鍵字(英) ★ Image Filtering
★ Foreground Object Filter
★ Object Detection
★ Uplink Bandwidth
論文目次 摘要 vi
Abstract vii
目錄 ix
1 緒論 1
1.1 前言 1
1.2 問題與實作目標 2
1.3 論文貢獻 3
1.4 研究架構 3
2 背景工具介紹 4
2.1 背景濾除演算法 4
2.1.1 背景過濾演算法函式庫 6
2.2 物件檢測演算法 6
2.3 OpenCV介紹 7
2.4 Gstreamer介紹 8
2.5 nload介紹 9
3 系統設計 10
3.1 系統架構 10
3.2 程式模組說明 11
3.3 Blocking Queue設計說明 13
3.4 程式流程與實現方法 14
3.4.1 生產者執行緒流程 14
3.4.2 消費者執行緒流程 16
4 實驗結果與分析 18
4.1 實驗目的 18
4.2 實驗環境與流程 18
4.2.1 實驗場景定義 19
4.2.2 實驗參數 22
4.3 實驗結果與效能分析 24
4.3.1 情境一 24
4.3.2 情境二 26
4.3.3 情境三 28
5 結論 29
參考文獻 30
參考文獻 [1] Q. Wang, J. Wan, and Y. Yuan, “Locality constraint distance metric learning for traffic congestion detection,” Pattern Recognition, Distance Metric Learning for Pattern Recognition, vol. 75, pp. 272–281, Mar. 1, 2018, issn: 0031-3203. doi: 10. 1016/j.patcog.2017.03.030. [Online]. Available: https://www.sciencedirect. com/science/article/pii/S0031320317301401 (visited on 06/15/2021).
[2] chtseng. “OpenCV 的前景/背景分離技術,” CH.Tseng. (Nov. 3, 2018), [Online]. Available: https://chtseng.wordpress.com/2018/11/03/opencv%e7%9a%84% e5%89%8d%e6%99%af%ef%bc%8f%e8%83%8c%e6%99%af%e5%88%86%e9%9b%a2%e6% 8a%80%e8%a1%93/ (visited on 06/13/2021).
[3] P. KaewTraKulPong and R. Bowden, “An improved adaptive background mixture model for real-time tracking with shadow detection,” in Video-Based Surveillance Systems, P. Remagnino, G. A. Jones, N. Paragios, and C. S. Regazzoni, Eds., Boston, MA: Springer US, 2002, pp. 135–144, isbn: 978-1-4613-5301-0 978-1-4615- 0913-4. doi: 10.1007/978-1-4615-0913-4_11. [Online]. Available: http://link. springer.com/10.1007/978-1-4615-0913-4_11 (visited on 06/13/2021).
[4] Z. Zivkovic, “Improved adaptive gaussian mixture model for background subtrac- tion,” in Proceedings of the 17th International Conference on Pattern Recogni- tion, 2004. ICPR 2004., ISSN: 1051-4651, vol. 2, Aug. 2004, 28–31 Vol.2. doi: 10.1109/ICPR.2004.1333992.
[5] Z. Zivkovic and F. van der Heijden, “Efficient adaptive density estimation per image pixel for the task of background subtraction,” Pattern Recognition Letters, vol. 27, no. 7, pp. 773–780, May 1, 2006, issn: 0167-8655. doi: 10.1016/j.patrec. 2005.11.005. [Online]. Available: https://www.sciencedirect.com/science/ article/pii/S0167865505003521 (visited on 06/13/2021).
[6] J. Redmon, S. Divvala, R. Girshick, and A. Farhadi, “You only look once: Unified, real-time object detection,” presented at the Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, 2016, pp. 779–788. [Online]. Available: https://www.cv-foundation.org/openaccess/content_cvpr_2016/html/ Redmon_You_Only_Look_CVPR_2016_paper.html (visited on 06/13/2021).
[7] J. Redmon and A. Farhadi, “YOLO9000: Better, faster, stronger,” arXiv:1612.08242 [cs], Dec. 25, 2016. arXiv: 1612.08242. [Online]. Available: http://arxiv.org/ abs/1612.08242 (visited on 06/13/2021).
[8] ——, “YOLOv3: An incremental improvement,” arXiv:1804.02767 [cs], Apr. 8, 2018. arXiv: 1804.02767. [Online]. Available: http://arxiv.org/abs/1804.02767 (visited on 06/13/2021).
[9] “GStreamer 系列 - 基本介绍 - John.Leng - 博客园.” (), [Online]. Available: https: //www.cnblogs.com/xleng/p/10948838.html (visited on 06/13/2021).
[10] See Jackson Hole, Town square webcam - northeast - SeeJH.com, Sep. 24, 2019. [Online]. Available: https://www.youtube.com/watch?v=ELtPf8zR8NY (visited on 06/18/2021).
指導教授 王尉任(Wei-Jen Wang) 審核日期 2021-8-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聯絡  - 隱私權政策聲明