forked from atsommer/Simplicio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSencamDriver.h
More file actions
37 lines (33 loc) · 955 Bytes
/
Copy pathSencamDriver.h
File metadata and controls
37 lines (33 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef SENCAM_DRIVER
#define SENCAM_DRIVER
#include "Driver.h"
namespace forms2{
ref class SencamDriver : Driver {
public:
SencamDriver();
~SencamDriver(){}
virtual int initCamera() override;
virtual int openCameraDialog() override;
virtual void lockCameraDialog(bool lock) override;
virtual void closeCamera() override;
virtual void expose() override;
virtual void stop() override;
virtual int getImageStatus() override;
virtual int getImageWidth() override;
virtual int getImageHeight() override;
virtual void readImage(UInt16 *buffer) override;
virtual String^ getDriverName() override {return gcnew String("Sensicam");}
virtual int armCamera() override;
//settings
virtual int getRows() override;
virtual int getCols() override;
virtual bool isDouble() override;
virtual void update() override;
protected:
int mode;
int trig;
//char table[300];
virtual void getSettings() override;
};
}
#endif