depthFrame property
The depth frame, as raw bytes.
NOTE: The RealSense SDK returns Uint16s, but this is cast to a Uint8 for UDP transfer. Be sure to re-cast it on the processing side!
Implementation
Uint8List get depthFrame {
final NativeFrames struct = ref;
return struct.depth_data.asTypedList(struct.depth_length);
}