| 123456789101112131415161718192021222324252627282930313233 |
- import sys
- from .._vendored.numpy_lookfor import lookfor as _lookfor
- __doctest_requires__ = {("lookfor",): ["SimpleITK"]}
- def lookfor(what):
- """Do a keyword search on scikit-image docstrings and print results.
- .. warning::
- This function may also print results that are not part of
- scikit-image's public API.
- Parameters
- ----------
- what : str
- Words to look for.
- Examples
- --------
- >>> import skimage as ski
- >>> ski.util.lookfor('regular_grid')
- Search results for 'regular_grid'
- ---------------------------------
- skimage.util.regular_grid
- Find `n_points` regularly spaced along `ar_shape`.
- skimage.util.lookfor
- Do a keyword search on scikit-image docstrings and print results.
- """
- return _lookfor(what, sys.modules[__name__.split('.')[0]])
|