Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How precise is the depth camera in the kinect?

  • range?
  • resolution?
  • noise?

Especially I'd like to know:

  • Are there any official specs about it from Microsoft?
  • Are there any scientific papers on the subject?
  • Investigations from TechBlogs?
  • Personal experiments that are easy to reproduce?

I'm collecting data for about a day now, but most of the writers don't name their sources and the values seem quite to differ...

share|improve this question
1  
OP should clarify what data they want. Different FOV angles below are due to a) the different sensors and data in a Kinect (RGB v. Depth) and b) pre- or post-aligned, etc. – mankoff Oct 12 '11 at 2:07

4 Answers

  • Range: ~ 50 cm to 5 m. Can get closer (~ 40 cm) in parts, but can't have the full view be < 50 cm.
  • Horizontal Resolution: 640 x 480 and 45 degrees vertical FOV and 58 degrees horizontal FOV. Simple geometry shows is about ~ 0.75 mm per pixel x by y at 50 cm, and ~ 3 mm per pixel x by y at 2 m.
  • Depth resolution: ~ 1.5 mm at 50 cm. About 5 cm at 5 m.
  • Noise: About +-1 DN at all depths, but DN to depth is non-linear. This means +-1 mm close, and +- 5 cm far.

There are official specs from the sensor developer, not from Microsoft. No scientific papers that I know of yet. Plenty of investigations and experiments (see Google). The OpenKinect Google Group has a lot more discussion on these things than this site for now.

share|improve this answer
mankoff: Do you have a reference for those specs or are those based on your own experiments? – Avada Kedavra Oct 10 '11 at 8:32
My own experiments for everything but FOV which comes from sensor specs – mankoff Oct 10 '11 at 12:55

The Kinect for Windows SDK provide some constants which I've been using and seem to be consistent. For range and resolution, these values are:

In default mode:

  • Minimum range: 80 cm
  • Maximum range: 400 cm

In near mode:

  • Minimum range: 40 cm
  • Maximum range: 300 cm

For the color camera, you may have either of the following resolutions:

  • 80x60
  • 320x240
  • 640x480
  • 1280x960

For the color camera, you may have either of the following resolutions:

  • 80x60
  • 320x240
  • 640x480

Confronting the information from Avada Kedavra (and from most sources, by the way), the values for the field of view given by the API are the following:

For the color camera:

  • Horizontal FOV: 62,0°
  • Vertical FOV: 48,6°

For the depth camera:

  • Horizontal FOV: 58,5°
  • Vertical FOV: 45,6°

Source: http://msdn.microsoft.com/en-us/library/hh855368

share|improve this answer

If you're looking for something published by Microsoft, check out page 11 of the Kinect Programming Guide. It says pretty much the same thing everyone here has already mentioned.

  • Range: 1.2 to 3.5 meters
  • Viewing angle: 43° vertical by 57° horizontal
  • Mechanized tilt range: ±28°
  • Frame rate: 30 frames per second
  • Resolution, depth stream: 320 x 240 (it can actually go higher than this)
  • Resolution, color stream: 640 x 480 (again, it can go higher)

I don't see anything mentioning noise, but I can say it's pretty minimal except along surface edges where it can become more noticeable.

share|improve this answer

According to Kinect tech spec finally revealed the specs for the depth field are (these match is also confirmed in the official programming guide as posted by Mannimarco):

* Horizontal field of view: 57 degrees
* Vertical field of view: 43 degrees
* Physical tilt range: ± 27 degrees
* Depth sensor range: 1.2m - 3.5m
* Resolution depth stream: 320x240 pixels
* Resolution color stream: 640x480 pixels

But from my own experience the depth sensor range is more like 0.8m-4.0m, at least I get good reading in this range. This range matches the Primesense data sheet posted by mankoff in the comments below.

It is also important to remember that the depth resolution is much higher close to the sensor than further away. At 3-4 meter the resolution is not nearly as good as at 1.5m. This becomes important if you, for example, want to calculate the normals of the surface. The result will be better closer to the sensor than further away.

Its not to hard to test the range yourself. The Official SDK (currently beta) will give you a a zero (0) depth when you are out of range. So, you could test this with a simple ruler, and test at what distance you get/dont get any reading larger than zero. I do not know how the OpenKinect SDK handles out-of-range readings.

A comment about noise: I would say that there is quite a bit of noise in the depth stream which makes it harder to work with. For example if you calculate the surface normals you can expect them to be a bit "jumpy" which of course will have a negative impact on fake lighting etc. Furthermore you have a parallax issue in the depth stream due to the distance between the IR transmitter and the receiver. This can also be hard to work with as it leave a large "shadow" in the depth data. This youtube video demonstrates the problem and discuss a way to resolve the issue using shaders. Its a video worth watching.

share|improve this answer
There are official specs. See data sheets here: openkinect.org/wiki/Hardware_info – mankoff Oct 10 '11 at 20:29
@mankoff: Thanks for sharing this. Its an interesting link. The hardware datasheets referenced are, however, very low-level and I can't find anything on the page you link to that answers the OP's (and my own) questions regarding the depth sensor range, depth resolution etc. And also, using openkinect.org as source of official specs? They may be kinect Gods, but they are not official. :) – Avada Kedavra Oct 11 '11 at 7:17
Sorry wrong link. Try this PDF db.tt/N1SxqFvp I'm not linking to OpenKinect as official, just to links on their pages. – mankoff Oct 11 '11 at 14:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.