Skip to content

Commit

Permalink
fix: don't convert to int
Browse files Browse the repository at this point in the history
  • Loading branch information
TomDarmon committed Nov 29, 2023
1 parent 6d4ea07 commit aa95ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trackreid/tracked_object_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def to_dict(self):
"first_frame_id": int(self.first_frame_id),
"last_frame_id": int(self.last_frame_id),
"class_counts": class_counts_str,
"bbox": [i for i in self.bbox],
"bbox": self.bbox,
"confidence": float(self.confidence),
"confidence_sum": float(self.confidence_sum),
"observations": int(self.observations),
Expand Down

0 comments on commit aa95ddd

Please sign in to comment.