Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add docstring to the transform module #6797

Merged
merged 16 commits into from Apr 4, 2023
6 changes: 6 additions & 0 deletions skimage/transform/__init__.py
@@ -1,3 +1,9 @@
"""Utilities to perform various transforms
lagru marked this conversation as resolved.
Show resolved Hide resolved

The following transforms are available:
lagru marked this conversation as resolved.
Show resolved Hide resolved
lagru marked this conversation as resolved.
Show resolved Hide resolved

"""

from .hough_transform import (hough_line, hough_line_peaks,
probabilistic_hough_line, hough_circle,
hough_circle_peaks, hough_ellipse)
Expand Down