Deprecated¶
These features are phased out due to better alternatives or potential issues in future versions. Deprecated functionalities are supported for five subsequent releases, providing time for users to transition to updated methods.
-
Constructing
DetectionDataset
andClassificationDataset
with parameterimages
asDict[str, np.ndarray]
will be removed insupervision-0.26.0
. Please pass a list of pathsList[str]
instead. -
The
DetectionDataset.images
property will be removed insupervision-0.26.0
. Please loop over images withfor path, image, annotation in dataset:
, as that does not require loading all images into memory. -
BoundingBoxAnnotator
has been renamed toBoxAnnotator
after the old implementation ofBoxAnnotator
has been removed.BoundingBoxAnnotator
will be removed insupervision-0.26.0
. -
overlap_filter_strategy
inInferenceSlicer.__init__
is deprecated and will be removed insupervision-0.27.0
. Useoverlap_strategy
instead. -
overlap_ratio_wh
inInferenceSlicer.__init__
is deprecated and will be removed insupervision-0.27.0
. Useoverlap_wh
instead.
Removed¶
0.25.0¶
No removals in this version!
0.24.0¶
- The
frame_resolution_wh
parameter insv.PolygonZone
has been removed. - Supervision installation methods
"headless"
and"desktop"
were removed, as they are no longer needed.pip install supervision[headless]
will install the base library and harmlessly warn of non-existent extras.
0.23.0¶
- The
track_buffer
,track_thresh
, andmatch_thresh
parameters inByteTrack
are deprecated and were removed as ofsupervision-0.23.0
. Uselost_track_buffer,
track_activation_threshold
, andminimum_matching_threshold
instead. - The
triggering_position
parameter insv.PolygonZone
was removed as ofsupervision-0.23.0
. Usetriggering_anchors
instead.
0.22.0¶
Detections.from_roboflow
is removed as ofsupervision-0.22.0
. UseDetections.from_inference
instead.- The method
Color.white()
was removed as ofsupervision-0.22.0
. Use the constantColor.WHITE
instead. - The method
Color.black()
was removed as ofsupervision-0.22.0
. Use the constantColor.BLACK
instead. - The method
Color.red()
was removed as ofsupervision-0.22.0
. Use the constantColor.RED
instead. - The method
Color.green()
was removed as ofsupervision-0.22.0
. Use the constantColor.GREEN
instead. - The method
Color.blue()
was removed as ofsupervision-0.22.0
. Use the constantColor.BLUE
instead. - The method
ColorPalette.default()
was removed as ofsupervision-0.22.0
. Use the constantColorPalette.DEFAULT
instead. BoxAnnotator
was removed as ofsupervision-0.22.0
, howeverBoundingBoxAnnotator
was immediately renamed toBoxAnnotator
. UseBoxAnnotator
andLabelAnnotator
instead of the oldBoxAnnotator
.- The method
FPSMonitor.__call__
was removed as ofsupervision-0.22.0
. Use the attributeFPSMonitor.fps
instead.