English 中文(简体)
校准2个摄像机
原标题:Calibrate two Cameras OpenCV

I m using OpenCV 2.2 and I m trying to calibrate two cameras to view along the same co-ordinate system. The two cameras will be placed a little separate from each other. I understand calibrating intrinsics for a single camera, but am a little confused so as to how I d be able to combine two cameras together. Follow up questions are good too.

乘客。

EDIT——致力于解决这一问题的阿姆集团——将在我这样做时给我说什么事。

最佳回答

可在? 我的回答是:StereoCalibrate,将使你能够解决你可以用来把任何一点照相机点与另一个照相机点联系起来的基本矩阵。

问题回答

附录一

  1. The fundamental matrix F defines the relation between the two cameras, that means given an image point x1 in C1 how it constrains the position of the corresponding point x2 in C2. The answer: x1 defines a line in C2 and x2 must be on this line. That is epipolar geometry. It is defined just by the cameras parameters and it does not depend on the scene geometry at all.

  2. 现在,你有2个预测矩阵、P1和P2,即,你知道两个照相机的所有参数。 如果您有correspondences, x1 <-> x2 (x1 from C1 and x2 from C2),你就可以估算在C1和C2中被图像成x1和x2的空间中X点的3D位置。 您能够重建你的芭蕾舞厅/乐团,获得3D模式。 trick部分是找到对应的x1 <->x2

现在,如果你要知道C1和C2是否看到同样的话,那么你的问题可能不是stereo problem,而是 承认问题<>。 Maybe SIFT 算法 是一种更为恰当的方法。





相关问题
How to crop image after taken from UIImagePicker Camera?

I m trying to allow the user to take 16x9 aspect ratio images to look like they are nice HD photos. I m using the cameraViewOverlay to overlay black bars on both ends, but when the image is taken, how ...

Android camera intents

Roger, I see that you ve been tinkering with camera intents. I m having real trouble just getting a simple app to tell me when the camera button has been pressed. Do you have some code to help me on ...

WPF 3D - How can I save and load a Camera view?

I have a WPF 3D scene where I can pan, rotate and zoom using the TrackballDecorator from the 3DTools library. I would like to save the camera settings (transformation) and be able to re-apply them ...

using phone camera with wap

I going to create a wap site using wml and servlets, it should be able to access phones camera and take a snapshot. Is it possible to a wap site to access phones camera? I know it is not possible in ...

CLicking on the camera button in the android emulator

The camera button on the android emulator is disabled. I can t click on it and when I hover with the mouse the background is not blue like in the other buttons. I ve tried to add "camera support - ...

Snapping pictures from Windows C# Canon SDK vs PTP or MTP

I am hoping to receive some general guidance on accomplishing a seemingly simple goal. I have a DSLR camera (Canon EOS 50D) and need to write an application that will tell the camera to take a ...