diff options
| author | morefigs <morefigs@gmail.com> | 2018-09-19 13:20:15 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-19 13:20:15 +1000 |
| commit | 0e3b769e89a6dca55ae5ba095f8fe74c9298291b (patch) | |
| tree | 5d62f196c841e462616b05819bac7e84a02e89e9 | |
| parent | fe0152a5e801cd1ce1f53b97f9f54e2dbf8662a0 (diff) | |
| parent | 4300f364ad2063ba7de1e30c941264b7a5d42f6a (diff) | |
| download | pymba-0e3b769e89a6dca55ae5ba095f8fe74c9298291b.tar.gz pymba-0e3b769e89a6dca55ae5ba095f8fe74c9298291b.zip | |
Merge pull request #73 from lbusoni/vimbaFrameNewFunction
implement VimbaFrame.getTimestamp and VimbaFrame.getReceiveStatus
| -rw-r--r-- | pymba/vimba_frame.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pymba/vimba_frame.py b/pymba/vimba_frame.py index 8f6d797..8242342 100644 --- a/pymba/vimba_frame.py +++ b/pymba/vimba_frame.py @@ -173,3 +173,11 @@ class VimbaFrame(object): except NameError as e: print('install numpy to use this method or use getBufferByteData instead') raise e + + + def getTimestamp(self): + return self._frame.timestamp + + + def getReceiveStatus(self): + return self._frame.receiveStatus |
