33 lines
924 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include "ItkCamera.h"
#include "util.h"
/* @brief选择用户配置文件。
* @param[in] lpConfigFileName配置文件名。
*
* @briefSelect configuration file.
* @param[in] lpConfigFileNameConfiguration file name. */
bool GetOption(char* lpConfigFileName);
/* @brief配置触发。
* @param[in] pCam相机结构体指针。
*
* @briefConfigure trigger.
* @param[in] pCamCamera struct pointer. */
void SetSoftTriggerWithGrabber(pItkCamera pCam);
/* @brief配置采集卡设备。
* @param[in] pCam相机结构体指针。
*
* @briefConfigure frame grabber device.
* @param[in] pCamCamera struct pointer. */
void ConfigureFrameGrabber(pItkCamera pCam);
/* @brief开始图像采集。
* @param[in] pCam相机结构体指针。
*
* @briefStart grabbing images.
* @param[in] hCameraCamera device handle.
* @param[in] pCamCamera struct pointer. */
void StartGrabImage(pItkCamera pCam);