Halcon 學習筆記3之檔案讀寫 資料夾操作

2021-10-05 13:47:16 字數 1348 閱讀 1951

*****************向文字檔案寫入字串內容********************

read_image (image, 'fabrik')

threshold (image, region, 0, 120)

*輸出面積,行, 列

area_center (region, area, row, column)

*以輸出的形式開啟檔案

open_file ('area.txt', 'output', filehandle)

fwrite_string (filehandle, '面積是:'+area + ' 畫素')

fwrite_string (filehandle, 'row:'+row + ' column'+column+' \n')

close_file (filehandle)

******************讀取文字檔案字串內容************************

disp_message (windowhandle, '檔案存在', 'window', 12, 12, 'black', 'true')

else

disp_message (windowhandle, '檔案不存在', 'window', 12, 12, 'black', 'true')

endif

HALCON學習筆記3

來自黑土的halcon學習教程,求鞍點 讀取影象 read image image,landmarks 獲得影象大小 get image size image,width,height 關閉影象視窗 dev close window 開啟指定大小顏色的視窗 dev open window 0,0,w...

halcon學習筆記02

直方圖均衡化 直方圖均衡化 equ histo image grayimage,imageequhisto 增強對比度,細節 emphasize data,imageemphasize,10,10,1.5 去噪 第四個引數是進行中值濾波的卷積核的尺寸,第五個引數是邊界處理方式,continued表示...

python學習筆記 CSV檔案讀

python pandas io tools 之csv檔案讀寫 讀取csv檔案 pd.read csv 寫入csv檔案 pd.to csv import pandas as pd obj pd.read csv test.csv print objunnamed 0 c1 c2 c3 0 a 0 5...