博碩士論文 109323097 詳細資訊




以作者查詢圖書館館藏 以作者查詢臺灣博碩士 以作者查詢全國書目 勘誤回報 、線上人數:38 、訪客IP:3.145.14.95
姓名 沈時雨(Shih-Yu Shen)  查詢紙本館藏   畢業系所 機械工程學系
論文名稱 四軸飛行器搭配機器視覺進行燈泡卸載
(Quadcopter With Machine Vision For Bulb Uninstall)
相關論文
★ 強健性扇形區域穩定範圍之比較★ 模糊系統混模強健控制
★ T-S模糊模型之建構、強健穩定分析與H2/H∞控制★ 廣義H2模糊控制-連續系統 線性分式轉換法
★ 廣義模糊控制-離散系統 線性分式轉換法★ H∞模糊控制-連續系統 線性分式轉換法
★ H∞模糊控制—離散系統 線性分式轉換法★ 強健模糊動態輸出回饋控制-Circle 與 Popov 定理
★ 強健模糊觀測狀態回饋控制-Circle與Popov定理★ H_infinity 取樣模糊系統的觀測型控制
★ H∞取樣模糊系統控制與觀測定理★ H-ihfinity取樣模糊系統動態輸出回饋控制
★ H∞模糊系統控制-多凸面法★ H∞模糊系統控制-寬鬆變數法
★ 時間延遲 T-S 模糊系統之強健 H2/H(Infinity) 控制與估測★ 寬鬆耗散性模糊控制-波雅定理
檔案 [Endnote RIS 格式]    [Bibtex 格式]    [相關文章]   [文章引用]   [完整記錄]   [館藏目錄]   [檢視]  [下載]
  1. 本電子論文使用權限為同意立即開放。
  2. 已達開放權限電子全文僅授權使用者為學術研究之目的,進行個人非營利性質之檢索、閱讀、列印。
  3. 請遵守中華民國著作權法之相關規定,切勿任意重製、散佈、改作、轉貼、播送,以免觸法。

摘要(中) 本論文使用STM32F103C8T6 作為主控制器,透過慣性測量單元
(IMU) 配合尤拉角等數學公式取得無人機的俯仰(pitch)、翻滾(roll)、
偏擺(yaw) 之角度及加速度,最後使用PID 進行回授控制完成四軸飛
行器的平衡。機器視覺則是考慮大小、耗電量、價錢等問題,決定使
用ESP32-CAM 為本論文之影像處理裝置,將取得之影像透過Wi-Fi 傳
送到瀏覽器配合OpenCV.js 進行影像處理之運算,並傳送控制訊號回
ESP32-CAM,再透過I2C 將控制訊號傳送給主控制器STM32 進行位置
微調,完成定位後將會進入卸除或安裝燈泡的程序。
摘要(英) STM32F103C8T6 is used as the main controller in this thesis, and
use the inertial measurement unit (IMU) and mathematical formulas such
as the Euler angle to obtained the angle and acceleration of the UAV’s
pitch, roll, and yaw. Finally, use PID feedback control to complete the
balance of the quadcopter. For machine vision, considering the issues
of size, power consumption, and price, this thesis uses ESP32-CAM as
the image processing device, and transmits the obtained image to the
browser through Wi-Fi, to complete image processing with OpenCV.js,
and the control signal is sent to ESP32-CAM. Finally, the control signal
is sent to the main controller STM32 through I2C to complete the positioning
in air. After the positioning in air is completed, the procedure of
removing or installing the light bulb will be execute.
關鍵字(中) ★ 四軸飛行器
★ 機器視覺
★ STM32
★ IMU
★ IoT
關鍵字(英)
論文目次 目錄
頁次
摘要iv
英文摘要v
目錄vi
一、緒論1
1.1 背景介紹.................................................................. 1
1.2 研究目的與動機......................................................... 1
1.3 文獻回顧.................................................................. 2
1.4 論文架構.................................................................. 3
二、系統架構及硬體介紹4
2.1 系統架構.................................................................. 4
2.2 硬體介紹.................................................................. 7
2.2.1 姿態感測......................................................... 7
2.2.2 遙控系統......................................................... 8
2.2.3 馬達及控制元件................................................ 10
2.2.4 電源供應......................................................... 15
2.2.5 機器視覺......................................................... 17
2.3 通訊協定.................................................................. 19
2.3.1 I2C................................................................. 19
2.3.2 MQTT............................................................. 20
vi
三、飛行姿態控制24
3.1 機身姿態.................................................................. 24
3.1.1 尤拉角............................................................ 24
3.1.2 旋轉矩陣......................................................... 25
3.2 慣性量測單元............................................................ 27
3.2.1 陀螺儀............................................................ 28
3.2.2 加速度計......................................................... 28
3.2.3 濾波器............................................................ 30
四、影像處理31
4.1 影像前處理............................................................... 32
4.1.1 色彩空間......................................................... 32
4.1.2 二值化............................................................ 33
4.1.3 捲積............................................................... 34
4.1.4 形態學............................................................ 36
4.1.5 高斯模糊......................................................... 38
4.2 辨識目標物............................................................... 41
4.2.1 輪廓偵測......................................................... 41
4.2.2 輪廓分析......................................................... 42
五、控制流程與實驗結果44
5.1 四軸飛行器之控制...................................................... 44
5.1.1 PID 控制......................................................... 44
5.1.2 飛行原理......................................................... 47
5.2 影像辨識與控制流程................................................... 49
5.2.1 影像中之目標物位置.......................................... 49
5.2.2 影像處理控制流程............................................. 50
vii
5.3 實驗結果.................................................................. 52
5.3.1 實驗環境......................................................... 52
5.3.2 安裝燈泡......................................................... 53
5.3.3 卸除燈泡......................................................... 55
六、結論與未來展望57
參考文獻59
viii
參考文獻 [1]Alaimo, A., Artale, V., Milazzo, C.L.R., Ricciardello, A.: Comparison
between euler and quaternion parametrization in uav dynamics. In:
AIP Conference Proceedings (2013)
[2]Kuipers, Jack B. Quaternions and rotation sequences: a primer
with applications to orbits, aerospace, and virtual reality. Princeton university
press, 1999.
[3]A.L. Salih, M. Moghavvemi, H.A.F. Mohamed and K.S. Gaeid,
”Modelling and PID controller design for a quadrotor unmanned air vehicle”,
Automation Quality and Testing Robotics (AQTR) 2010 IEEE International
conference on, vol. 1, 1–5, 28–30 May2010.
[4]J. Li and Y. Li, ”Dynamic analysis and PID control for a quadrotor”,
Proc. IEEE Int. Conf. Mechatronics Autom., pp. 573-578, Aug. 2011.
[5]Redmon, Joseph, et al. ”You only look once: Unified, real-time
object detection.” Proceedings of the IEEE conference on computer vision
and pattern recognition. 2016.
[6]U. Hunkeler, H. L. Truong and A. Stanford-Clark, ”MQTT-S —Apublish/subscribe protocol for Wireless Sensor Networks,” 2008 3rd International
Conference on Communication Systems Software and Middleware
and Workshops (COMSWARE ’08), 2008, pp. 791-798.
[7]OpenCV.js https://docs.opencv.org/4.x/
[8]I2C 裝置連接示意圖https://rexpighj123.pixnet.net/blog/post/219960237-
i2c
[9]Publish/Subscribe 訊息傳送示意圖https://medium.com/swift-iosapp-/
ios-x-iot-2-mqtt-e750aa420162
[10]Qos:0 訊息傳送示意圖https://medium.com/swift-ios-app-/iosx-
iot-2-mqtt-e750aa420162
[11]Qos:1 訊息傳送示意圖https://medium.com/swift-ios-app-/iosx-
iot-2-mqtt-e750aa420162
[12]Qos:2 訊息傳送示意圖https://medium.com/swift-ios-app-/iosx-
iot-2-mqtt-e750aa420162
[13] 尤拉角示意圖https://silverwind1982.pixnet.net/blog/post/258069682
[14]MPU-6050 晶片https://invensense.tdk.com/wp-content/uploads/
2015/02/MPU-6000-Datasheet1.pdf
[15]RGB 空間及HSV 空間示意圖https://docs.opencv.org/3.4/da/
d97/tutorialtˍhresholdˍinRange.html
指導教授 羅吉昌 審核日期 2022-8-25
推文 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聯絡  - 隱私權政策聲明