You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
325 B
C++
21 lines
325 B
C++
#pragma once
|
|
#include "SyncQueue.h"
|
|
#include "basecamera.h"
|
|
#include "MvCameraControl.h"
|
|
#include "CameraParams.h"
|
|
|
|
#define HIKClassID 0x03
|
|
|
|
class HIKCamera : public BaseCamera
|
|
{
|
|
public:
|
|
HIKCamera(int DeviceNum);
|
|
~HIKCamera();
|
|
|
|
static int Enumerate();
|
|
|
|
public:
|
|
static MV_CC_DEVICE_INFO_LIST stDeviceList;
|
|
|
|
};
|