Orbbec SDK K4A Wrapper
|
#include <k4a/k4a.h>
Related Functions | |
(Note that these are not member functions.) | |
K4A_EXPORT uint32_t | k4a_device_get_installed_count (void) |
K4A_EXPORT k4a_result_t | k4a_device_open (uint32_t index, k4a_device_t *device_handle) |
K4A_EXPORT void | k4a_device_close (k4a_device_t device_handle) |
K4A_EXPORT k4a_wait_result_t | k4a_device_get_capture (k4a_device_t device_handle, k4a_capture_t *capture_handle, int32_t timeout_in_ms) |
K4A_EXPORT k4a_wait_result_t | k4a_device_get_imu_sample (k4a_device_t device_handle, k4a_imu_sample_t *imu_sample, int32_t timeout_in_ms) |
K4A_EXPORT k4a_result_t | k4a_device_start_cameras (k4a_device_t device_handle, const k4a_device_configuration_t *config) |
K4A_EXPORT void | k4a_device_stop_cameras (k4a_device_t device_handle) |
K4A_EXPORT k4a_result_t | k4a_device_start_imu (k4a_device_t device_handle) |
K4A_EXPORT void | k4a_device_stop_imu (k4a_device_t device_handle) |
K4A_EXPORT k4a_buffer_result_t | k4a_device_get_serialnum (k4a_device_t device_handle, char *serial_number, size_t *serial_number_size) |
K4A_EXPORT k4a_result_t | k4a_device_get_version (k4a_device_t device_handle, k4a_hardware_version_t *version) |
K4A_EXPORT k4a_result_t | k4a_device_get_color_control_capabilities (k4a_device_t device_handle, k4a_color_control_command_t command, bool *supports_auto, int32_t *min_value, int32_t *max_value, int32_t *step_value, int32_t *default_value, k4a_color_control_mode_t *default_mode) |
K4A_EXPORT k4a_result_t | k4a_device_get_color_control (k4a_device_t device_handle, k4a_color_control_command_t command, k4a_color_control_mode_t *mode, int32_t *value) |
K4A_EXPORT k4a_result_t | k4a_device_set_color_control (k4a_device_t device_handle, k4a_color_control_command_t command, k4a_color_control_mode_t mode, int32_t value) |
K4A_EXPORT k4a_buffer_result_t | k4a_device_get_raw_calibration (k4a_device_t device_handle, uint8_t *data, size_t *data_size) |
K4A_EXPORT k4a_result_t | k4a_device_get_calibration (k4a_device_t device_handle, const k4a_depth_mode_t depth_mode, const k4a_color_resolution_t color_resolution, k4a_calibration_t *calibration) |
K4A_EXPORT k4a_result_t | k4a_device_get_sync_jack (k4a_device_t device_handle, bool *sync_in_jack_connected, bool *sync_out_jack_connected) |
K4A_EXPORT k4a_result_t | k4a_calibration_get_from_raw (char *raw_calibration, size_t raw_calibration_size, const k4a_depth_mode_t depth_mode, const k4a_color_resolution_t color_resolution, k4a_calibration_t *calibration) |
Handle to an Azure Kinect device.