Skip to content

Commit

Permalink
Merge branch 'main' of github.com:TrackingLaboratory/tracklab
Browse files Browse the repository at this point in the history
  • Loading branch information
victorjoos committed Jun 26, 2024
2 parents 16e7f66 + 070d332 commit 6b56fb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class PbTrackSearchPathPlugin(SearchPathPlugin):
def manipulate_search_path(self, search_path: ConfigSearchPath) -> None:
# Appends the search path for tracklab plugins to the end of the search path
groups = entry_points()
pbtrack_plugins = groups['tracklab_plugin']
pbtrack_plugins = groups.get("tracklab_plugins", [])
for pbtrack_plugin in pbtrack_plugins:
m = pbtrack_plugin.dist
module = pbtrack_plugin.load()
Expand Down
2 changes: 1 addition & 1 deletion tracklab/utils/cv2.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def draw_ignore_region(patch, image_metadata):
def print_count_frame(patch, frame, nframes):
draw_text(
patch,
f"{frame}/{nframes}",
f"{frame+1}/{nframes}",
(6, 15),
fontFace=1,
fontScale=2.0,
Expand Down

0 comments on commit 6b56fb6

Please sign in to comment.