Expand description
Reading frames, creating data arrays.
Enums§
- The available frame types,
Depth
andRGB
(optical). IR frame is not implemented yet.
Functions§
- Checks if the number of pixels in
frame
equalspixel_count
. - Creates
bgr
data array fromframe
. - Returns the image data in
frame
for the current frame fromdevice
. Before invoking this API, invokeread_next_frame()
to capture one image frame from the device.frame_ready
is a pointer to a buffer storing the signal for the frame availability set inread_next_frame()
. The imageframe_type
is eitherFrameType::Depth
orFrameType::RGB
. - Creates
normalized_depth
data array fromframe
. - Captures the next image frame from
device
. This API must be invoked before capturing frame data usingget_frame()
.frame_ready
is a pointer to a buffer storing the signal for the frame availability.
Type Aliases§
- Depth/IR/RGB image frame data.
- Flag signaling if a frame is available