Azure Kinect Sensor SDK
refs/heads/master
Documentation for https://github.com/Microsoft/Azure-Kinect-Sensor-SDK
|
|
related |
Read the value of a tag from a recording.
playback_handle | Handle obtained by k4a_playback_open(). |
name | The name of the tag to read. |
value | Location to write the tag value. This will be a UTF8 null terminated string. If a NULL buffer is specified, value_size will be set to the size of buffer needed to store the string. |
value_size | On input, the size of the value buffer. On output, this is set to the length of the tag value (including the null terminator). |
value
has been filled in. If the buffer is too small the function returns K4A_BUFFER_RESULT_TOO_SMALL and the needed size of the value
buffer is returned in the value_size
parameter. K4A_BUFFER_RESULT_FAILED is returned if the tag does not exist. All other failures return K4A_BUFFER_RESULT_FAILED.