Skip to content

Commit

Permalink
fix buffer size name
Browse files Browse the repository at this point in the history
  • Loading branch information
philipqueen committed Mar 26, 2024
1 parent ebbb22e commit 7145dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skellytracker/process_folder_of_videos.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def get_tracker(tracker_name: str, tracking_params: BaseModel) -> BaseTracker:
min_tracking_confidence=tracking_params.min_tracking_confidence,
static_image_mode=True, # yolo cropping must be run with static image mode due to changing size of bounding boxes
bounding_box_buffer_percentage=tracking_params.bounding_box_buffer_percentage,
buffer_size_method=tracking_params.yolo_buffer_size_method,
buffer_size_method=tracking_params.buffer_size_method,
)

elif tracker_name == "YOLOPoseTracker":
Expand Down

0 comments on commit 7145dff

Please sign in to comment.