From 80f6f8e567c1e92e971a71fee866b45a0fd1ab2a Mon Sep 17 00:00:00 2001 From: Anam Fatima <123370498+anamfatima1304@users.noreply.github.com> Date: Mon, 16 Oct 2023 20:18:26 +0500 Subject: [PATCH] Add docstring to `skimage.graph` module (#7192) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Lars GrĂ¼ter --- skimage/graph/__init__.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/skimage/graph/__init__.py b/skimage/graph/__init__.py index 62d86f77631..bba7b4d3c8a 100644 --- a/skimage/graph/__init__.py +++ b/skimage/graph/__init__.py @@ -1,3 +1,11 @@ +""" +This moddule provides utilities for graph-based image processing. + +This includes creating adjacency graphs of pixels in an image, finding the +central pixel in an image, finding (minimum-cost) paths across pixels, merging +and cutting of graphs, etc. + +""" import lazy_loader as lazy __getattr__, __dir__, __all__ = lazy.attach_stub(__name__, __file__)