refactor kitti eval

This commit is contained in:
lorenzo 2019-05-21 15:13:34 +02:00
parent e9df8c9c1e
commit 02ac6626d6

View File

@ -72,7 +72,7 @@ class KittiEval:
boxes_m3d, dds_m3d = self._parse_txts(path_m3d, method='m3d')
boxes_3dop, dds_3dop = self._parse_txts(path_3dop, method='3dop')
boxes_md, dds_md = self._parse_txts(path_md, method='md')
boxes_our, dds_our, stds_ale, stds_epi, kk_list, dds_geom, xyzs, xy_kps = \
boxes_our, dds_our, stds_ale, stds_epi, _, dds_geom, _, _ = \
self._parse_txts(path_our, method='our')
# Compute the error with ground truth
@ -398,5 +398,3 @@ def find_cluster(dd, clusters):
return clst
return clusters[-1]