Skip to content

Commit

Permalink
Fix missing pkgs in examples and sort
Browse files Browse the repository at this point in the history
  • Loading branch information
mikel-brostrom authored Aug 6, 2023
1 parent d9c8d20 commit d9aa252
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,12 @@ The set of hyperparameters leading to the best HOTA result are written to the tr
<summary>Minimalistic</summary>

```python
from boxmot import DeepOCSORT
from pathlib import Path
import cv2
import numpy as np
from pathlib import Path

from boxmot import DeepOCSORT


tracker = DeepOCSORT(
model_weights=Path('osnet_x0_25_msmt17.pt'), # which ReID model to use
Expand All @@ -260,10 +263,12 @@ while True:
<summary>Complete</summary>

```python
from boxmot import DeepOCSORT
from pathlib import Path
import cv2
import numpy as np
from pathlib import Path

from boxmot import DeepOCSORT


tracker = DeepOCSORT(
model_weights=Path('osnet_x0_25_msmt17.pt'), # which ReID model to use
Expand Down

0 comments on commit d9aa252

Please sign in to comment.