Azure Kinect

shion oka 1 Reputation point
2021-03-18T12:09:42.213+00:00

Hello!

Azure Kinect has stopped suddenly. I'm in trouble because I don't understand the reason.

It's working fine now. But I have a question for the future.

Is there a function that stops when the temperature of Azure Kinect becomes high?

Also, are there any other functions that stop it?

Please answer.

Azure Kinect DK
Azure Kinect DK
A Microsoft developer kit and peripheral device with advanced artificial intelligence sensors for sophisticated computer vision and speech models.
292 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. QuantumCache 20,266 Reputation points
    2021-03-19T00:26:23.073+00:00

    Hello @shion oka Sorry to hear that you are facing an issue with the device.

    We can refer to the below section: Operating Environment

    Operating environment

    You may be interested to take a look at this page: Retrieve Azure Kinect IMU samples

    k4a_imu_sample_t imu_sample;  
      
    // Capture a imu sample  
    switch (k4a_device_get_imu_sample(device, &imu_sample, TIMEOUT_IN_MS))  
    {  
    case K4A_WAIT_RESULT_SUCCEEDED:  
        break;  
    case K4A_WAIT_RESULT_TIMEOUT:  
        printf("Timed out waiting for a imu sample\n");  
        continue;  
        break;  
    case K4A_WAIT_RESULT_FAILED:  
        printf("Failed to read a imu sample\n");  
        goto Exit;  
    }  
      
    // Access the accelerometer readings  
    if (imu_sample != NULL)  
    {  
        printf(" | Accelerometer temperature:%.2f x:%.4f y:%.4f z: %.4f\n",  
                imu_sample.temperature,  
                imu_sample.acc_sample.xyz.x,  
                imu_sample.acc_sample.xyz.y,  
                imu_sample.acc_sample.xyz.z);  
    }  
    

    You may encounter a situation in which you have to reset your Azure Kinect DK back to its factory image (for example, if a firmware update didn't install correctly).
    Then you can visit this: Reset Azure Kinect DK topic.

    Please also visit the Azure Kinect known issues and troubleshooting.

    You may also contact the official support if the issue continues to repeat: Standard Limited Warranty applies to Surface devices, Xbox, PC accessories, HoloLens, and Azure Kinect DK in the United States.

    For technical support using Sensor SDK and Body Tracking SDK on-premises, open a ticket for professional support on Microsoft support portal.

    Please comment in the below section.

    If the response is helpful, please click "Accept Answer" and upvote it.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.