diff --git a/docs/detection/smoother.md b/docs/detection/smoother.md deleted file mode 100644 index b55f9ade..00000000 --- a/docs/detection/smoother.md +++ /dev/null @@ -1,3 +0,0 @@ -## Smoother - -:::supervision.detection.smoother.Smoother diff --git a/docs/detection/tools/smoother.md b/docs/detection/tools/smoother.md new file mode 100644 index 00000000..f27fe529 --- /dev/null +++ b/docs/detection/tools/smoother.md @@ -0,0 +1,3 @@ +## Detection Smoother + +:::supervision.detection.tools.smoother.Smoother diff --git a/mkdocs.yml b/mkdocs.yml index 4cb23161..f25bc382 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -37,12 +37,12 @@ nav: - Core: classification/core.md - Detections: - Core: detection/core.md - - Smoother: detection/smoother.md - Utils: detection/utils.md - Tools: - Line Zone: detection/tools/line_zone.md - Polygon Zone: detection/tools/polygon_zone.md - Inference Slicer: detection/tools/inference_slicer.md + - Detection Smoother: detection/tools/smoother.md - Annotators: annotators.md - Trackers: trackers.md - Datasets: datasets.md diff --git a/supervision/__init__.py b/supervision/__init__.py index ef9327df..1922553a 100644 --- a/supervision/__init__.py +++ b/supervision/__init__.py @@ -33,7 +33,7 @@ from supervision.dataset.core import ( from supervision.detection.annotate import BoxAnnotator from supervision.detection.core import Detections from supervision.detection.line_counter import LineZone, LineZoneAnnotator -from supervision.detection.smoother import Smoother +from supervision.detection.tools.smoother import Smoother from supervision.detection.tools.inference_slicer import InferenceSlicer from supervision.detection.tools.polygon_zone import PolygonZone, PolygonZoneAnnotator from supervision.detection.utils import ( diff --git a/supervision/detection/smoother.py b/supervision/detection/tools/smoother.py similarity index 100% rename from supervision/detection/smoother.py rename to supervision/detection/tools/smoother.py