AlexP - 09 December 2010 12:32 PM
We are currently working on fixing the documentation to reflect all of this details. In the mean time here it is:
The Corrected12 and Corrected8 the output the data from the depth sensor that is transformed to properly represent the distance from the camera (closer distance means smaller value).
The formulas used are:
depthCorrected12 = (2048*2048) / (2048-depthRaw), range [0, 2047]
depthCorrected8 = (256*2048) / (2048-depthRaw), range [0,255]
Hi,
you are talking about the documentation. Is there any version available?
The depthRaw values are 11bit and should be in the range 0..2047.
I don’t understand your formulas.
depthRaw=0 -> depthCorrected12=2048
depthRaw=2047 -> depthCorrected12=2048*2048
0..2047 is the range for 11bit, so why is the name not depthCorrected11?
Whatever, i like the SDK.
Thank for that..