GrabBag/SDK/Device/IKapLibrary/Examples/Qt/SingleCamera/GeneralGrabWithGrabber.h

25 lines
693 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"
/* @brief配置采集卡设备。
* @param[in] pCam相机结构体指针。
*
* @briefConfigure frame grabber device.
* @param[in] pCamCamera struct pointer. */
bool ConfigureFrameGrabber(pItkCamera pCam);
/* @brief开始图像采集。
* @param[in] pCam相机结构体指针。
*
* @briefStart grabbing images.
* @param[in] pCamCamera struct pointer. */
bool StartGrabImage(pItkCamera pCam);
/* @brief停止图像采集。
* @param[in] pCam相机结构体指针。
*
* @briefStop grabbing images.
* @param[in] pCamCamera struct pointer. */
bool StopGrabImage(pItkCamera pCam);