Azure Kinect DK 文档
Azure-Kinect-Sensor-SDK 文档
Azure Kinect Body Tracking SDK 文档
OpenCV文档
参考文档学习,边学,边查资料
获取图像时间戳
- 目的
- 设备
- 函数
- 代码
- 结果
- 总结
目的
- 获取图像时间戳
设备
- 一台Azure Kinect DK
函数
- k4a_image_get_device_timestamp_usec
Get the image’s device timestamp in microseconds.
代码
代码如下
#include<iostream>
#include<k4a/k4a.h>
#include<k4abt.h>using namespace std;int main()
{
system("color 1f"); // 宝蓝色uint32_t count = k4a_device_get_installed_count();cout << "已连接设备:" << count