Deprecated¶
These features are phased out due to better alternatives or potential issues in future versions. Deprecated functionalities are typically supported for multiple subsequent releases, providing time for users to transition to updated methods.
sv.ByteTrackis deprecated in favour ofByteTrackTrackerfrom the externaltrackerspackage (pip install trackers). The update method is renamed fromupdate_with_detections()toupdate(). Removal planned forsupervision-0.30.0.supervision.keypointmodule is deprecated; usesupervision.key_pointsinstead. Will be removed insupervision-0.30.0.create_tilesinsupervision.utils.imageis deprecated. Will be removed insupervision-0.31.0.ensure_cv2_image_for_processinginsupervision.utils.conversionis deprecated. Will be removed insupervision-0.31.0.- Keypoint validation utilities in
supervision.validatorsare deprecated. Will be removed insupervision-0.31.0. normalized_xyxyargument insv.denormalize_boxesis renamed toxyxy. Passingnormalized_xyxy=emits aFutureWarning; support will be removed insupervision-0.30.0.supervision.dataset.utilsimport path forsv.rle_to_maskandsv.mask_to_rleis deprecated. These functions moved tosupervision.detection.utils.converters. Will be removed insupervision-0.30.0.sv.LMMenum is deprecated and will be removed insupervision-0.31.0. Usesv.VLMinstead.sv.Detections.from_lmmproperty is deprecated and will be removed insupervision-0.31.0. Usesv.Detections.from_vlminstead.
Removed¶
0.27.0¶
overlap_ratio_whparameter insv.InferenceSlicerhas been removed. Use the pixel-basedoverlap_whparameter instead.overlap_filter_strategyparameter insv.InferenceSlicerhas been removed. Useoverlap_strategyinstead.
0.26.0¶
- The
sv.DetectionDataset.imagesproperty has been 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. Also, constructingsv.DetectionDatasetwith parameterimagesasDict[str, np.ndarray]is deprecated and has been removed insupervision-0.26.0. Please pass a list of pathsList[str]instead. - The name
sv.BoundingBoxAnnotatoris deprecated and has been removed insupervision-0.26.0. It has been renamed tosv.BoxAnnotator.
0.24.0¶
- The
frame_resolution_whparameter insv.PolygonZonehas 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_threshparameters inByteTrackare deprecated and were removed as ofsupervision-0.23.0. Uselost_track_buffer,track_activation_threshold, andminimum_matching_thresholdinstead. - The
triggering_positionparameter insv.PolygonZonewas removed as ofsupervision-0.23.0. Usetriggering_anchorsinstead.
0.22.0¶
sv.Detections.from_roboflowis removed as ofsupervision-0.22.0. UseDetections.from_inferenceinstead.- The method
sv.Color.white()was removed as ofsupervision-0.22.0. Use the constantsv.Color.WHITEinstead. - The method
sv.Color.black()was removed as ofsupervision-0.22.0. Use the constantsv.Color.BLACKinstead. - The method
sv.Color.red()was removed as ofsupervision-0.22.0. Use the constantsv.Color.REDinstead. - The method
sv.Color.green()was removed as ofsupervision-0.22.0. Use the constantsv.Color.GREENinstead. - The method
sv.Color.blue()was removed as ofsupervision-0.22.0. Use the constantsv.Color.BLUEinstead. - The method
sv.ColorPalette.default()was removed as ofsupervision-0.22.0. Use the constantColorPalette.DEFAULTinstead. sv.BoxAnnotatorwas removed as ofsupervision-0.22.0, howeversv.BoundingBoxAnnotatorwas immediately renamed tosv.BoxAnnotator. UseBoxAnnotatorandLabelAnnotatorinstead of the oldsv.BoxAnnotator.- The method
sv.FPSMonitor.__call__was removed as ofsupervision-0.22.0. Use the attributesv.FPSMonitor.fpsinstead.