I'm trying to get started with Kinect, and it has a depth sensing camera, but I've seen no guidance on measuring width/height/lengths.

Is it a matter of working out the distance an object is away from the camera (depth sensor) and at that range the field of view of the Kinect, and then working out how many pixels your object takes up?

I'd like to be able to do a mesh or something from a dot-cloud and I'm having troubles figuring where to start and how to get proper width/height measurements for objects.

link|improve this question

50% accept rate
have the same issue as you... did you found a solution? is there a formula or something to measuring... – Killercode Aug 12 '11 at 14:35
feedback

1 Answer

This is a rather complex task and cannot be answered with a few paragraphs here on Stackoverflow. The reason is that its a lot of knowledge that builds on other knowledge. I would start by reading up on Linear Algebra using for example the excellent Rorres, et al.

Creating the mesh from the point-cloud is a complex task and there is no defacto algorithm used today. A popular algorithm is the Delaunay triangulation.

There is also a c# implementation provided by the s-hull project.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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