Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarification on radar fundamental matrix #7

Open
chtanch opened this issue Apr 10, 2023 · 0 comments
Open

Clarification on radar fundamental matrix #7

chtanch opened this issue Apr 10, 2023 · 0 comments

Comments

@chtanch
Copy link

chtanch commented Apr 10, 2023

In the paper, in Eq. 13 and 14, the radar intrinsic matrix is an orthographic projection matrix and a conversion to cartesian coordinates/units.

However, in ProjectAllBBox.py, it seems that a perspective transform is applied as well. So there seems to be a contradiction between the code and paper's model + formula. Could you clarify this?

radar_coords = np.dot(P ,world_coords)
radar_coords /= radar_coords[-1]

If I set the world coordinates (x,z) = (0,0) to estimate the translation between world/camera and radar coordinate frames using

radar_coords = np.dot(P, np.array([0,0,1,1]).T)
radar_coords /= radar_coords[-1]

The result is [-0.2125, 0.6 , 1. ] in meters, which does not seem reasonable.

Furthermore, can you clarify the difference between 'p_matrix_original.npy' and 'p_matrix.npy'?

Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant