Merge branch 'develop' into ci/build/changes

This commit is contained in:
Onuralp SEZER 2025-01-09 19:32:39 +03:00
commit 4c03f899b9
No known key found for this signature in database
GPG Key ID: CF0835DFDF14CA38
1 changed files with 5 additions and 5 deletions

View File

@ -1027,16 +1027,16 @@ class Detections:
detections_1 = sv.Detections(
xyxy=np.array([[15, 15, 100, 100], [200, 200, 300, 300]]),
class_id=np.array([1, 2]),
data={'feature_vector': np.array([0.1, 0.2)])}
)
data={'feature_vector': np.array([0.1, 0.2])}
)
detections_2 = sv.Detections(
xyxy=np.array([[30, 30, 120, 120]]),
class_id=np.array([1]),
data={'feature_vector': [np.array([0.3])]}
)
data={'feature_vector': np.array([0.3])}
)
merged_detections = Detections.merge([detections_1, detections_2])
merged_detections = sv.Detections.merge([detections_1, detections_2])
merged_detections.xyxy
array([[ 15, 15, 100, 100],