Hello all,
I have difficulties getting the RGB image:
I an currently working with Nuitrack C++ SDK and an orbbec sensor that is rotated in position.
I have specified the rotation in the nuitrack config file, in the DepthProvider part:
“DepthProvider”: {
“RotateAngle”: “270”,
“RGB”: “Auto”,
“Depth2ColorRegistration”: false,
“Mirror”: false
},
Also tried with:
“DepthProvider”: {
“RotateAngle”: “270”,
“RGB”: {
“Width”: 480,
“Height”: 640
},
“Depth2ColorRegistration”: false,
“Mirror”: false
},
But the RGB image is just blurred (I can see the image updating and moving but I only have vertical lines).
The RGB image is just fine when RotateAngle = 0 but I have to work with a 270° rotated sensor due to project specifications.
Am I missing a setting to tell the RGB that camera has to be rotated too ?
Is there any other workaround ?