We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Sorry to bother you. I still can't figure it out that why "pred_dict['bbox'][height_mask, 3] +=2"? Are there any details I missed? Have a nice day!
line 315 to 318 in kitti_dataset_mm.py: pred_dict['bbox'] = pred_boxes_img height = pred_dict['bbox'][:, 3] - pred_dict['bbox'][:, 1] height_mask = height<25 pred_dict['bbox'][height_mask, 3] +=2
The text was updated successfully, but these errors were encountered:
Just to keep more objects during evaluation, as the KITTI filters objects of height<25.
Sorry, something went wrong.
No branches or pull requests
Sorry to bother you.
I still can't figure it out that why "pred_dict['bbox'][height_mask, 3] +=2"? Are there any details I missed?
Have a nice day!
line 315 to 318 in kitti_dataset_mm.py:
pred_dict['bbox'] = pred_boxes_img
height = pred_dict['bbox'][:, 3] - pred_dict['bbox'][:, 1]
height_mask = height<25
pred_dict['bbox'][height_mask, 3] +=2
The text was updated successfully, but these errors were encountered: