
    89jM                     (    d dl Z ddlmZ ddgiZd Zy)    N   )lookfor	SimpleITKc                 h    t        | t        j                  t        j	                  d      d            S )aq  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.
    .r   )_lookforsysmodules__name__split)whats    T/media/conek/DATA/Code/OCR/venv/lib/python3.12/site-packages/skimage/util/lookfor.pyr   r   	   s(    0 D#++hnnS&9!&<=>>    )r	   _vendored.numpy_lookforr   r   __doctest_requires__ r   r   <module>r      s    
 9 %{m4 ?r   