目前評估中瑕疵檢測及半自動化
- 7月 26 週六 202511:40
Eliminate Costly Component Out Of Pocket Defect Condition During Semiconductor IC Transport and Hand
- 7月 26 週六 202511:20
Detecting Dents and Scratches on Metal Surfaces
- 3月 27 週日 202220:44
How to get rows and columns of a certain mask in Halcon MVtec?
Let's suppose that Region to be a mask of a gray-level image after the threshold process.
Here is an example of how to get all the rows and columns of the Region in Halcon.
get_region_points (Region, Rows, Columns)
tuple_sort_index (Columns, Indices)
Here is an example of how to get all the rows and columns of the Region in Halcon.
get_region_points (Region, Rows, Columns)
tuple_sort_index (Columns, Indices)
- 1月 10 週二 201722:52
ActivVision筆記

ActivVisionTool是好幾年前的影像量測工具, 下面這段範例程式看起來像是原廠底層activeX元件沒寫好, 竟然要寫一個GC.Collect()在自身的Live取像程式Event內, 不加入就會發生memory leakage喔!關閉程式, 自動儲存DSC參數檔案儲存: AxAVTView1.ExitApplication(True)確認EnableWriteToDSCFile==True不儲存: AxAVTView1.ExitApplication(False)m_AVTView.SetEnableWriteToDSCFile(FALSE);Keep in mind that the DSC files, which store the settings, reside in the same directory as the executable
- 8月 10 週三 201616:07
安裝PCIE-1730

32-ch isolated DI/O (16-ch digital input, 16-ch digital output)
- 8月 08 週一 201615:32
USB To RS232/DI/DO

3組Digital Input12~32 VDC
- 7月 20 週三 201610:36
安裝SENTECH 攝影機驅動和SDK

以我SONY NB 64位元為例, 先點選StCamSWare X64位元驅動程式----------------------------------------------------------------------------\Sentech\StandardSDK\StandardSDK(v3.06)\Sample\VCSHARPNET2005C:\Emgu\emgucv-windows-universal-cuda 3.0.0.2158\Emgu.CV.Example\CameraCapture
- 7月 14 週四 201611:15
CMOS 與 CCD
以下參考資料說明1. CMOS 與 CCD差異2. 什麼是 global shutter 和 rolling shutter3. global shutter和rolling shutter優缺點
參考資料:1. CMOS 與 CCD2. How does your iPhone’s shutter work?
參考資料:1. CMOS 與 CCD2. How does your iPhone’s shutter work?
- 7月 09 週六 201610:41
工業檢測顯微鏡
- 5月 05 週四 201603:03
HSMS simulator
可以先到 http://secs.itri.org.tw/了解HSMS的規範, 下載Emulator和試用軟體---------------------------------------------------------------------------------------------This is the SECSII/HSMS host application for windows.Download here---------------------------------------------------------------------------------------------以下為HSMS-SECS.1.0.0.1使用範例, 下載HSMS/SECS-II Library
HSMS hsms = new HSMS();hsms.OnReceived += hsms_OnReceived;
HSMSData data = new HSMSData();data.Stream(1);
data.Function(1);
SecsData secs = data.Secs();
SecsList list = (SecsList)secs.Add(new SecsList());list.Add(new SecsAscii("This is an ASCII text."));
list.Add(new SecsBinary(0x25));list.Add(new SecsList());hsms.Connect("127.0.0.1", 6000);hsms.Send(data);

