_ndimage_api.py 586 B

12345678910111213141516
  1. """This is the 'bare' ndimage API.
  2. This --- private! --- module only collects implementations of public ndimage API
  3. for _support_alternative_backends.
  4. The latter --- also private! --- module adds delegation to CuPy etc and
  5. re-exports decorated names to __init__.py
  6. """
  7. from ._filters import * # noqa: F403
  8. from ._fourier import * # noqa: F403
  9. from ._interpolation import * # noqa: F403
  10. from ._measurements import * # noqa: F403
  11. from ._morphology import * # noqa: F403
  12. # '@' due to pytest bug, scipy/scipy#22236
  13. __all__ = [s for s in dir() if not s.startswith(('_', '@'))]