AzureKinect DK nuitrack.config isnt applying

Hi @Klavs,
Change nuitrack.config like this:

    "AzureKinectDepthProviderModule": {
        "OutputWidth": 1920,
        "OutputHeight": 1080
    },

or you can use api functions setConfigValue like this:

Nuitrack::setConfigValue("AzureKinectDepthProviderModule.OutputWidth", "1920");
Nuitrack::setConfigValue("AzureKinectDepthProviderModule.OutputHeight", "1080");

Use nuitrack_device_api_sample to get the available image resolution like this Problems with Astra+ - #2 by irakli

1 Like