以作者查詢圖書館館藏 、以作者查詢臺灣博碩士 、以作者查詢全國書目 、勘誤回報 、線上人數:138 、訪客IP:3.136.236.3
姓名 張家碩(Jia-Shuo Chang) 查詢紙本館藏 畢業系所 光機電工程研究所 論文名稱 應用於H-BOT機構之雷射雕刻品質優化之研究 相關論文 檔案 [Endnote RIS 格式] [Bibtex 格式] [相關文章] [文章引用] [完整記錄] [館藏目錄] 至系統瀏覽論文 (2029-1-10以後開放) 摘要(中) 在工業 5.0 的這個時代,雷射加工已是耳熟能詳的加工方式,大多數加工機具都能透過安裝激光頭使用雷射加工,依機台架構不同,常見的有龍門式平台、機械手臂甚至是專為雷射加工設計的反射式平台;本論文使用 H-Bot 機構作為研究平台,基於架構,相較於上述的龍門平台、機械手臂,先天上具有平均馬達負載的優勢;而與反射式平台相比,成本也較為低廉。
而進行研究方便考量,本研究採用 C#人機介面,在加工之前對二維影像進行前處理,將其轉換為機台加工代碼 GCode;藉由 STM32 微控制器解讀加工碼,透過 I/O、RS485 控制馬達運行步數、速度,同時以 PWM 控制雷射輸出功率進行加工。
實驗方面,針對不同雷射功率與燒灼產生灰階之間的關聯,找到其關係曲線,討論其特性,並反饋應用於功率上下限調整、功率分配方式;於影像前處理部分,採用直方圖均化前處理方法提升成品對比度、抖動前處理強化燒灼灰階表現;加工路徑增加了斜向路徑,比對其餘舊有路徑效果,提升加工精度的同時盡可能維持相同加工時間;最後與前人學者羅的加工結果相比,各項指標如峰值訊噪比、結構相似度都顯示具有較好的對比度,且原圖相似度較高。摘要(英) In the era of Industry 5.0, laser processing is a well-known processing method. Most processing tools can use
laser processing by installing a laser head. Depending on the structure of the machine, common ones include
gantry platforms, robotic arms, and even reflective platforms designed for laser processing. This paper uses the HBot mechanism as the research platform. Based on the structure, it has the advantage of average motor load
compared to the aforementioned gantry platform and robotic arm. Compared with the reflective platform, the cost
is also lower.
For the convenience of research, this study uses a C# human-machine interface, preprocesses the twodimensional image before processing, and converts it into machine processing code GCode. The STM32
microcontroller interprets the processing code, controls the motor running steps and speed through I/O, RS485,
and controls the laser output power for processing with PWM.
In terms of experiments, the relationship between different laser powers and the grayscale generated by
burning is found, the relationship curve is found, its characteristics are discussed, and feedback is applied to the
adjustment of power upper and lower limits and power distribution methods. In the image preprocessing part, the
histogram equalization preprocessing method is used to improve the contrast of the finished product and the jitter
preprocessing to enhance the performance of the burning grayscale. The processing path has added a diagonal
path, compared with the rest of the old path effects, to improve the processing accuracy while maintaining the
same processing time as much as possible. Finally, compared with the processing results of previous scholars Luo,
all indicators such as peak signal-to-noise ratio and structural similarity show better contrast, and the similarity to
the original image is higher.關鍵字(中) ★ H-Bot
★ 雷射功率
★ 灰階值
★ 影像處理
★ 直方圖均化
★ 圖像比對關鍵字(英) ★ H-Bot
★ laser power
★ grayscale
★ image processing
★ histogram equalization
★ image comparison論文目次 摘要 ..................................................................... i
Abstract ................................................................ ii
致謝 ................................................................... iii
目錄 .................................................................... iv
圖目錄 .................................................................. vi
表目錄 ................................................................ viii
符號說明 ................................................................ ix
第一章 緒論 .............................................................. 1
1-1 前言 ............................................................... 1
1-2 研究動機與目的 ..................................................... 1
1-3 文獻回顧 ........................................................... 2
1-4 論文架構 ........................................................... 3
第二章 基礎理論 .......................................................... 4
2-1 雷射概述 ........................................................... 4
2-1-1 數位調變(Digital Modulation) .................................... 4
2-1-2 類比調變(Analog Modulation) ..................................... 4
2-2 脈衝寬度調變(Pulse-Width Modulation) ............................... 5
2-3 G Code 簡介 ......................................................... 6
2-4 影像處理 ........................................................... 7
2-4-1 影像灰階化(Grayscale) ........................................... 7
2-4-2 影像二值化(Binarization) ........................................ 7
2-4-3 直方圖均化(Histogram Equalization) .............................. 8
第三章 硬體架構、通訊與介面 .............................................. 9
3-1 H-Bot 型機構 ........................................................ 9
3-2 步進馬達及驅動器介紹 .............................................. 10
3-2-1 XY 軸向步進馬達—AZM69AK ....................................... 10
3-2-2 步進馬達驅動器—AZDKD .......................................... 11
v
3-3 STM32 微控制器開發板 ............................................... 13
3-4 雷射 .............................................................. 15
3-5 TTL-RS485 信號轉換板 ............................................... 16
3-6 電路設計 .......................................................... 17
3-6-1 馬達驅動電路 ................................................... 17
3-6-2 單晶片板電路設定 ............................................... 22
第四章 研究方法 ......................................................... 24
4-1 H-Bot 機構座標 ..................................................... 24
4-1-1 基本公式推導 ................................................... 26
4-1-2 單馬達控制—斜向 45 度移動 ...................................... 28
4-1-3 雙馬達控制—XY 方向移動 ........................................ 29
4-1-4 雙馬達控制—斜向其餘角度 ....................................... 29
4-1-5 H-Bot 機構座標轉換流程 ......................................... 30
4-2 研究架構 .......................................................... 31
4-3 GCode 產生介面 ..................................................... 32
4-4 雷射/馬達操作介面 ................................................. 35
4-5 WebCam 介面 ........................................................ 37
第五章 實驗結果與討論 ................................................... 38
5-1 功率關係曲線實驗 .................................................. 40
5-2 影像前處理實驗 .................................................... 45
5-2-1 直方圖均化前處理 ............................................... 45
5-2-2 抖動前處理 ..................................................... 48
5-3 斜向移動路徑實驗 .................................................. 51
第六章 結論與未來展望 ................................................... 55
6-1 結論 .............................................................. 55
6-2 未來展望 .......................................................... 55
參考文獻 ................................................................ 56參考文獻 〔1〕 Schawlow A.L., Townes C.H., “Infrared and optical masers ”, Physical eview, Vol 112, pp. 1940, 1958.
〔2〕 Maiman T.H., “Stimulated optical radiation in ruby ”, 1960.
〔3〕 Басов Н.Г., “К 75-летию со дня рождения ”, 1997.
〔4〕 Bowyer A., “The Intellectual Property Implications of Low-Cost 3D printing ”, 2010.
〔5〕 丁承君、張鵬、閆彬、趙澤羽,「平面型 H-bot 機構的運動演算法」,Journal of
Taianjin Polytechnic University, 2017 年 1 月。
〔6〕 梁輝、孔祥旭、高雲濤、張廣興、汪傳生,「一種 H-bot 極座標 3D 打印機的結
構設計」,Machinery & Electronics, 2019 年。
〔7〕 Phanomchoeng G., Chancharoen R., “Adaptive gain control for a two-axis, H-frame-type,positive system ”,
Engineering Journal,Vol 21, Issue 3, pp.223-234, Jun. 2017.
〔8〕 羅日廷,「以 Labview 遠端控制輕量化機械手臂」,國立中央大學機械系,碩士
論文,2018 年。
〔9〕 張家樵,「三軸機械手臂雷射加工控制之研究」,國立中央大學機械系,碩士論
文,2019 年。
〔10〕徐翊芳,「H-bot 機構雷射加工控制之研究」,國立中央大學機械系,碩士論文,
2020 年。
〔11〕羅子鈞,「H-bot 機構雷射加工雲端控制器之研發」,國立中央大學機械系,碩士
論文,2021 年。
〔12〕 Yao C.B.,Rogelio J.P., Baldovino R.G., Caluyo F.S., “A Fuzzy-Pulse Width Modulation (PWM) Control
Algorithm for a Computer Numerical Control (CNC) Laser Machine ”, Advanced Science Letters, Vol 21,
Issue 5, pp. 4419-4423, May 2017.
〔13〕 ITU-R, “Studio encoding parameters of digital television for standard 4:3 and wide screen 16:9 aspect
ratios ”, BT601-7, 2011.
57
〔14〕 Dah-Chung C. and Wen-Rong W., "Image contrast enhancement based on a histogram transformation of
local standard deviation ",IEEE Transactions on Medical Imaging, Vol 17, No. 4, pp. 518-531,Aug. 1998.
〔15〕 Orientalmotor,http://www.orientalmotor.com.tw/product/st/list/detail/?brand_tbl_code=ST&product_name
=AZD-KD
〔16〕 Orientalmotor,http://www.orientalmotor.com.tw/product/st/astep_azacflex_f/p2/
〔17〕 STMicroelectronics,“User manual STM32 Nucleo-144 boards”
〔18〕 SharpElectronicComponents,http://www.syceletronica.com.ar/semiconductor/PC8X7C.pdf
〔19〕 K.S. Sollmann , M.K. Jouaneh and D. Lavender, “Dynamic Modeling of a Two-Axis, Parellel, H-FrameType XY Position System ”, IEEE/ASME Transactions on Mechatronics, Vol. 15, Issue 2, pp. 280-290, Apr.
2010.
〔20〕 A. Piva, M. Barni, F. Bartolini and V. Cappellini, "DCT-based watermark recovering without resorting to the
uncorrupted original image ", Proceedings of International Conference on Image Processing, pp. 520-
523,Vol 1, 1997.
〔21〕 F. Mohammad and A. Munir, "Image Compression via Dithering for Enhanced Images ", International
Conference on Electrical Engineering, Lahore, Pakistan, pp. 1-7, 2007.指導教授 黃衍任 審核日期 2024-1-11 推文 facebook plurk twitter funp google live udn HD myshare reddit netvibes friend youpush delicious baidu 網路書籤 Google bookmarks del.icio.us hemidemi myshare