You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd also like to know that, especially since I do have that information and at the moment all my objects do look slightly flattened, which I assume is connected to the intrinsics
Since the model is trained on ZeoDepth, I guess the intrinsic is aligned with ZeoDepth. I found this in ZeoDepth's repo
# geometry.py from ZeoDepthdefget_intrinsics(H,W):
""" Intrinsics for a pinhole camera model. Assume fov of 55 degrees and central principal point. """f=0.5*W/np.tan(0.5*55*np.pi/180.0)
cx=0.5*Wcy=0.5*Hreturnnp.array([[f, 0, cx],
[0, f, cy],
[0, 0, 1]])
But not sure whether it matches the final tracking 3D result, I'm verifying it.
Hi there, fantastic work—really impressive!
I have a few questions about your method:
Looking forward to your response. Thank you for your time and for sharing this great project!
The text was updated successfully, but these errors were encountered: