Skip to content

Commit

Permalink
added tabulate requirements and caught import error in init (Jonathon…
Browse files Browse the repository at this point in the history
…Luiten#102)

Signed-off-by: David Slater <[email protected]>

Signed-off-by: David Slater <[email protected]>
  • Loading branch information
davidslater authored Nov 29, 2022
1 parent b96772a commit 12c8791
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ scikit_image==0.16.2
pytest==6.0.1
Pillow==8.1.2
tqdm==4.64.0
tabulate
7 changes: 5 additions & 2 deletions trackeval/datasets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@
from .davis import DAVIS
from .tao import TAO
from .tao_ow import TAO_OW
from .burst import BURST
from .burst_ow import BURST_OW
try:
from .burst import BURST
from .burst_ow import BURST_OW
except ImportError as err:
print(f"Error importing BURST due to missing underlying dependency: {err}")
from .youtube_vis import YouTubeVIS
from .head_tracking_challenge import HeadTrackingChallenge
from .rob_mots import RobMOTS
Expand Down

0 comments on commit 12c8791

Please sign in to comment.