-
-
Notifications
You must be signed in to change notification settings - Fork 48
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
questions about lane annotation #13
Comments
Thank you for your issue.
|
Thanks for your reply!
So for 1. I wanna to confirm if I havn't miss other information, which means annotation has some mistakes, then I will close the issue. |
We have checked the annotations and there is indeed such a problem, and we will fix it later. Thanks. |
Please mention it here if you have done this work. Thanks! |
Hi @dyfcalid , Thanks for explanation about the transformation of the camera frames. I had a related question. Why are the extrinsics re computed? What are the original extrinsics with respect to? The following is the piece of code that I am referring to:
|
thanks for your great job.I have some questions about lane annotaion as follow:
(1) what "attribute:0" means? And I found that most of time it equals 0
(2) how to project 3D points under xyz camera coordinate to uv image coordinate? I tried [x,y,1]^T=K[X,Y,Z,1],which XYZ came from 3D points ["xyz"] in json and K came from ["intrinsic"], but points generated seemed wrong.
k1 = np.c_[np.array(json["intrinsic"]),np.zeros(3)]
t = np.array(XYZ.reshape(-1,1))
xyz = np.matmul(k1,t)
The text was updated successfully, but these errors were encountered: