In your example at https://github.com/Vzense/NebulaSDK/blob/master/Python/Samples/DS77/FrameCaptureAndSave/FrameCaptureAndSave.py, I added after line 85: ``` print(frame.frameType, frame.pixelFormat, frame.exposureTime, frame.depthRange, frame.pFrameData) ``` It prints: ``` 0 0 0.0 0 <API.VzenseDS_types.LP_c_ubyte object at 0x7ffb141163c0> ``` Why am I getting zero values for `frame.exposureTime` and `frame.depthRange`?
In your example at https://github.com/Vzense/NebulaSDK/blob/master/Python/Samples/DS77/FrameCaptureAndSave/FrameCaptureAndSave.py, I added after line 85:
It prints:
Why am I getting zero values for
frame.exposureTimeandframe.depthRange?