[SOLVED] Disabling RGB stream in Nuitrack

Hi
I try nuitrack sdk in c++ with a d455

I Got depth, color and user frames and skeleton tracking.

When i switch off light, user frame lost a lot of fps.
I tried with realsense viewer and same happens. But when i stop rgb all is ok.
So i stopped nuitrack rgb frame but that does not work.

Is there a way to stop rgb frame from realsense internally nuitrack ?

Thanks

I found i reply.

In nuitrack.config
Section “Depthprovider” put “RGB” “Off”.

Hi @thierry,

Sorry for the late reply.
Yes, you can switch RGB off.
After Nuitrack::init(); add Nuitrack::setConfigValue("DepthProvider.RGB", "Off");

Thanks for this other way