Closed
Description
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)