forked from xingyizhou/CenterNet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d4700b5
commit b1b6991
Showing
8 changed files
with
1,942 additions
and
9 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# kitti_eval | ||
|
||
`evaluate_object_3d_offline.cpp`evaluates your KITTI detection locally on your own computer using your validation data selected from KITTI training dataset, with the following metrics: | ||
|
||
- overlap on image (AP) | ||
- oriented overlap on image (AOS) | ||
- overlap on ground-plane (AP) | ||
- overlap in 3D (AP) | ||
|
||
Compile `evaluate_object_3d_offline.cpp` with dependency of Boost and Linux `dirent.h` (You should already have it under most Linux). | ||
|
||
Run the evalutaion by: | ||
|
||
./evaluate_object_3d_offline groundtruth_dir result_dir | ||
|
||
Note that you don't have to detect over all KITTI training data. The evaluator only evaluates samples whose result files exist. | ||
|
||
|
||
### Updates | ||
|
||
- June, 2017: | ||
* Fixed the bug of detection box filtering based on min height according to KITTI's note on 25.04.2017. |
Oops, something went wrong.