-
Notifications
You must be signed in to change notification settings - Fork 21
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
Use EgoNet on custom data #15
Comments
Hi, to use EgoNet on your custom data:
|
Thank you for the response. Also, to visualize the orientation arrow it requires 'kpts_3d_gt', are these the 3D dimensions that need to there before doing predictions for orientation estimation, as I am not able to visualize the arrow for KITTI test data. |
You can use the predicted cuboid ("kpts_3d_pred") to visualize the orientation arrow instead. In this way, you don't need a 3D box input. |
But the below code for adding an orientation arrow can be possible only by using both 'kpts_3d_gt' and 'kpts_3d_pred'. I understand that Keypoints are different from 3D bounding boxes, but if I only use 'resources/text_boxes' prediction files, that just have the correct 2D bounding box location then the 'annot_dict' contains 'kpts_3d_before' and not 'kpts_3d_gt'. Thus, not able to get the orientation arrow. So I will have to use the txt files that also have the correct 6 fields (other than 2D bboxes) related to the 3D coordinate system for the code to have 'kpts_3d_gt'. As when I use the output files from D4LCN, the 'annot_dict' has 'kpts_3d_gt', which gives me an orientation arrow (Adding the difference in image visualizations below).
|
Hi, the gt_kpts were used only to get the translation so that the arrow can be computed in the camera coordinate system.
|
Thank you for sharing your work.
I want to use EgoNet for 3D bbox and object orientation estimation tasks on custom data. How should I proceed, do I need any other model's 2D/3D bbox predictions to start with or if I change the input data while testing I can get both 3D bbox and orientation predictions?
The text was updated successfully, but these errors were encountered: