Azure Kinect Sensor SDK
refs/heads/master
Documentation for https://github.com/Microsoft/Azure-Kinect-Sensor-SDK
|
Handle to an Azure Kinect capture. More...
#include <k4a/k4a.h>
Related Functions | |
(Note that these are not member functions.) | |
k4a_result_t | k4a_capture_create (k4a_capture_t *capture_handle) |
Create an empty capture object. More... | |
void | k4a_capture_release (k4a_capture_t capture_handle) |
Release a capture. More... | |
void | k4a_capture_reference (k4a_capture_t capture_handle) |
Add a reference to a capture. More... | |
k4a_image_t | k4a_capture_get_color_image (k4a_capture_t capture_handle) |
Get the color image associated with the given capture. More... | |
k4a_image_t | k4a_capture_get_depth_image (k4a_capture_t capture_handle) |
Get the depth image associated with the given capture. More... | |
k4a_image_t | k4a_capture_get_ir_image (k4a_capture_t capture_handle) |
Get the IR image associated with the given capture. More... | |
void | k4a_capture_set_color_image (k4a_capture_t capture_handle, k4a_image_t image_handle) |
Set or add a color image to the associated capture. More... | |
void | k4a_capture_set_depth_image (k4a_capture_t capture_handle, k4a_image_t image_handle) |
Set or add a depth image to the associated capture. More... | |
void | k4a_capture_set_ir_image (k4a_capture_t capture_handle, k4a_image_t image_handle) |
Set or add an IR image to the associated capture. More... | |
void | k4a_capture_set_temperature_c (k4a_capture_t capture_handle, float temperature_c) |
Set the temperature associated with the capture. More... | |
float | k4a_capture_get_temperature_c (k4a_capture_t capture_handle) |
Get the temperature associated with the capture. More... | |
Handle to an Azure Kinect capture.