I use Kinect and openNI to record an sequence depth video with fixed angle.

What I want to do is to recover virtual camera rotation from the video, so that I can simulate the video is taking from the top view.

I know I can physically to do that. Even so, I still need to do some calibration and recover camera rotation a little bit.

Where should I start from?

link|improve this question

69% accept rate
feedback

1 Answer

The problem itself is known as "Camera Pose Estimation". You may want to look at the available literature about this topic, there should be also an implementation of it inside ROS operating system. Among the technique used to accomplish this task, there are also Structure From Motion and VSLAM algorithms borrowed from the robotics field :-)

link|improve this answer
Thanks Dexter!! Really appreciated! But I found another way to do this! I just used openni's projecttorealworld! And it's really helpful! – Nohappy Jun 24 '11 at 4:50
@HuanWu I have googled for 'openni' and 'projecttorealworld' and found nothing. Can you post a link to this part of the API / code / program for others? Thank you. – mankoff Sep 22 '11 at 0:19
2  
I think Huan Wu is talking about the utility function to convert projective coordinates to real world coordinates in OpenNI. Check the ConvertProjectiveToRealWorld method of the xn::DepthGenerator object! – Dexter Sep 25 '11 at 10:46
Yes Dexter, you're right! Thank you very much! – Nohappy Oct 12 '11 at 18:45
feedback

Your Answer

 
or
required, but never shown

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