structure-from-motion
structure-from-motion copied to clipboard
Pose Estimation
This is a cool tutorial.
Can you explain the pose estimation part? Where did those K values come from in section 2.5?
2.5. Pose Estimation
K = np.array([[2759.48,0,1520.69],[0,2764.16,1006.81],[0,0,1]])
E = K.T.dot(F.dot(K))
It comes from the camera calibration process.