Azure Kinect Sensor SDK
refs/heads/master
Documentation for https://github.com/Microsoft/Azure-Kinect-Sensor-SDK
|
Handle to an Azure Kinect image. More...
#include <k4a/k4a.h>
Related Functions | |
(Note that these are not member functions.) | |
k4a_result_t | k4a_image_create (k4a_image_format_t format, int width_pixels, int height_pixels, int stride_bytes, k4a_image_t *image_handle) |
Create an image. More... | |
k4a_result_t | k4a_image_create_from_buffer (k4a_image_format_t format, int width_pixels, int height_pixels, int stride_bytes, uint8_t *buffer, size_t buffer_size, k4a_memory_destroy_cb_t *buffer_release_cb, void *buffer_release_cb_context, k4a_image_t *image_handle) |
Create an image from a pre-allocated buffer. More... | |
uint8_t * | k4a_image_get_buffer (k4a_image_t image_handle) |
Get the image buffer. More... | |
size_t | k4a_image_get_size (k4a_image_t image_handle) |
Get the image buffer size. More... | |
k4a_image_format_t | k4a_image_get_format (k4a_image_t image_handle) |
Get the format of the image. More... | |
int | k4a_image_get_width_pixels (k4a_image_t image_handle) |
Get the image width in pixels. More... | |
int | k4a_image_get_height_pixels (k4a_image_t image_handle) |
Get the image height in pixels. More... | |
int | k4a_image_get_stride_bytes (k4a_image_t image_handle) |
Get the image stride in bytes. More... | |
K4A_DEPRECATED_EXPORT uint64_t | k4a_image_get_timestamp_usec (k4a_image_t image_handle) |
Get the image's device timestamp in microseconds. More... | |
uint64_t | k4a_image_get_device_timestamp_usec (k4a_image_t image_handle) |
Get the image's device timestamp in microseconds. More... | |
uint64_t | k4a_image_get_system_timestamp_nsec (k4a_image_t image_handle) |
Get the image's system timestamp in nanoseconds. More... | |
uint64_t | k4a_image_get_exposure_usec (k4a_image_t image_handle) |
Get the image exposure in microseconds. More... | |
uint32_t | k4a_image_get_white_balance (k4a_image_t image_handle) |
Get the image white balance. More... | |
uint32_t | k4a_image_get_iso_speed (k4a_image_t image_handle) |
Get the image ISO speed. More... | |
void | k4a_image_set_device_timestamp_usec (k4a_image_t image_handle, uint64_t timestamp_usec) |
Set the device time stamp, in microseconds, of the image. More... | |
K4A_DEPRECATED_EXPORT void | k4a_image_set_timestamp_usec (k4a_image_t image_handle, uint64_t timestamp_usec) |
Set the device time stamp, in microseconds, of the image. More... | |
void | k4a_image_set_system_timestamp_nsec (k4a_image_t image_handle, uint64_t timestamp_nsec) |
Set the system time stamp, in nanoseconds, of the image. More... | |
void | k4a_image_set_exposure_usec (k4a_image_t image_handle, uint64_t exposure_usec) |
Set the exposure time, in microseconds, of the image. More... | |
K4A_DEPRECATED_EXPORT void | k4a_image_set_exposure_time_usec (k4a_image_t image_handle, uint64_t exposure_usec) |
Set the exposure time, in microseconds, of the image. More... | |
void | k4a_image_set_white_balance (k4a_image_t image_handle, uint32_t white_balance) |
Set the white balance of the image. More... | |
void | k4a_image_set_iso_speed (k4a_image_t image_handle, uint32_t iso_speed) |
Set the ISO speed of the image. More... | |
void | k4a_image_reference (k4a_image_t image_handle) |
Add a reference to the k4a_image_t. More... | |
void | k4a_image_release (k4a_image_t image_handle) |
Remove a reference from the k4a_image_t. More... | |
Handle to an Azure Kinect image.