Skip to content

Commit

Permalink
Add docstring to skimage.graph module (scikit-image#7192)
Browse files Browse the repository at this point in the history
Co-authored-by: Lars Grüter <lagru+github@mailbox.org>
  • Loading branch information
anamfatima1304 and lagru committed Oct 16, 2023
1 parent d6ba6db commit 80f6f8e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions skimage/graph/__init__.py
Original file line number Diff line number Diff line change
@@ -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__)

0 comments on commit 80f6f8e

Please sign in to comment.