IC Capture 新功能

由 TIS Marketing 于 2023年5月23日 发表。

IC Capture 2.5是The Imaging Source图像采集软件的最新更新,可以在IC Imaging Control的LoadDeviceStatefromFile() 函数读取设备状态文件时创建设备状态文件。设备状态文件能让IC Capture 针对给定应用轻松配置一台或多台相机。

屏幕截图: IC Capture GUI

现在,通过IC Capture,经鼠标按键设定感兴趣区域 (ROI) 变得很容易。 然后,新生成的视频格式及其在相机传感器上的位置可供执行IC Imaging Control的程序使用。

使用滑鼠选择所需的感兴趣区域(ROI):

屏幕截图: 在IC Capture中设定ROI

现在显示选定的ROI:

屏幕截图: IC Capture 现在设定完毕

IC Capture File 选单提供新的项目 Export Device State, 可用来储存新的设备配置如XML文件。

透过 icImagingControl1.LoadDeviceStateFromFile("device.xml", true); 此设置可以在单独的 C# 程序中装入 :

private void Form1_Load(object sender, EventArgs e)
{
    // Try to load the previously used device. 
    try
    {
        icImagingControl1.LoadDeviceStateFromFile("device.xml", true);
    }
    catch
    {
        // Either the xml file does not exist or the device
        // could not be loaded. In both cases we do nothing and proceed.
    }
    (...)
}

此"device.xml"文件也能加载到C++, Python,及 IC LabVIEW Extension中。

点击链接下载IC Capture 2.5或了解更多信息。