LAT Hologramm-Software 2.0
Loading...
Searching...
No Matches
Camera.m
Go to the documentation of this file.
1classdef (Abstract) Camera < Device
2 properties
3 pixelX=0;
4 pixelY=0;
5 pixelPitch=0;
6 exposureTime=0;
7 pauseBeforeCapture = 0;
8
9 savePath;
10 saveName = "";
11 saveNo=0;
12 end
14
15
16 methods (Abstract)
17 getImage(obj);
18 end
20 methods
21 end
22end
23
Definition: Camera.m:5
Definition: Device.m:6