├── .coveragerc ├── .coveralls.yml ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ └── test_and_deploy.yml ├── .gitignore ├── .readthedocs.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.rst ├── continuous_integration ├── environment-3.10.yml ├── environment-3.11.yml ├── environment-3.12.yml ├── environment-3.9.yml ├── environment-doc.yml └── environment-latest.yml ├── dask_image ├── __init__.py ├── dispatch │ ├── __init__.py │ ├── _dispatch_ndfilters.py │ ├── _dispatch_ndinterp.py │ ├── _dispatch_ndmorph.py │ ├── _dispatcher.py │ └── _utils.py ├── imread │ └── __init__.py ├── ndfilters │ ├── __init__.py │ ├── _conv.py │ ├── _diff.py │ ├── _edge.py │ ├── _gaussian.py │ ├── _generic.py │ ├── _order.py │ ├── _smooth.py │ ├── _threshold.py │ └── _utils.py ├── ndfourier │ ├── __init__.py │ └── _utils.py ├── ndinterp │ ├── __init__.py │ ├── _affine_transform.py │ ├── _map_coordinates.py │ ├── _rotate.py │ └── _spline_filters.py ├── ndmeasure │ ├── __init__.py │ └── _utils │ │ ├── __init__.py │ │ ├── _find_objects.py │ │ └── _label.py └── ndmorph │ ├── __init__.py │ ├── _ops.py │ └── _utils.py ├── docs ├── Makefile ├── api.rst ├── authors.rst ├── conf.py ├── contributing.rst ├── coverage.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── quickstart.rst └── release │ ├── generate_release_notes.py │ └── release_guide.rst ├── pyproject.toml └── tests ├── __init__.py └── test_dask_image ├── test_imread ├── __init__.py ├── test_core.py └── test_cupy_imread.py ├── test_ndfilters ├── __init__.py ├── test__conv.py ├── test__diff.py ├── test__edge.py ├── test__gaussian.py ├── test__generic.py ├── test__order.py ├── test__smooth.py ├── test__threshold.py ├── test__utils.py ├── test_cupy_ndfilters.py └── test_cupy_threshold.py ├── test_ndfourier ├── test__utils.py └── test_core.py ├── test_ndinterp ├── test_affine_transformation.py ├── test_map_coordinates.py ├── test_rotate.py └── test_spline_filter.py ├── test_ndmeasure ├── __init__.py ├── test__utils.py ├── test_core.py └── test_find_objects.py └── test_ndmorph ├── __init__.py ├── test__utils.py ├── test_cupy_ndmorph.py └── test_ndmorph.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/.coveragerc -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: mu5JxVQy1FJSQvhczAzyHvaXx4qfHhF1R 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test_and_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/.github/workflows/test_and_deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/README.rst -------------------------------------------------------------------------------- /continuous_integration/environment-3.10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/continuous_integration/environment-3.10.yml -------------------------------------------------------------------------------- /continuous_integration/environment-3.11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/continuous_integration/environment-3.11.yml -------------------------------------------------------------------------------- /continuous_integration/environment-3.12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/continuous_integration/environment-3.12.yml -------------------------------------------------------------------------------- /continuous_integration/environment-3.9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/continuous_integration/environment-3.9.yml -------------------------------------------------------------------------------- /continuous_integration/environment-doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/continuous_integration/environment-doc.yml -------------------------------------------------------------------------------- /continuous_integration/environment-latest.yml: -------------------------------------------------------------------------------- 1 | environment-3.12.yml -------------------------------------------------------------------------------- /dask_image/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dask_image/dispatch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dask_image/dispatch/_dispatch_ndfilters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/dispatch/_dispatch_ndfilters.py -------------------------------------------------------------------------------- /dask_image/dispatch/_dispatch_ndinterp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/dispatch/_dispatch_ndinterp.py -------------------------------------------------------------------------------- /dask_image/dispatch/_dispatch_ndmorph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/dispatch/_dispatch_ndmorph.py -------------------------------------------------------------------------------- /dask_image/dispatch/_dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/dispatch/_dispatcher.py -------------------------------------------------------------------------------- /dask_image/dispatch/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/dispatch/_utils.py -------------------------------------------------------------------------------- /dask_image/imread/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/imread/__init__.py -------------------------------------------------------------------------------- /dask_image/ndfilters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndfilters/__init__.py -------------------------------------------------------------------------------- /dask_image/ndfilters/_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndfilters/_conv.py -------------------------------------------------------------------------------- /dask_image/ndfilters/_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndfilters/_diff.py -------------------------------------------------------------------------------- /dask_image/ndfilters/_edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndfilters/_edge.py -------------------------------------------------------------------------------- /dask_image/ndfilters/_gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndfilters/_gaussian.py -------------------------------------------------------------------------------- /dask_image/ndfilters/_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndfilters/_generic.py -------------------------------------------------------------------------------- /dask_image/ndfilters/_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndfilters/_order.py -------------------------------------------------------------------------------- /dask_image/ndfilters/_smooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndfilters/_smooth.py -------------------------------------------------------------------------------- /dask_image/ndfilters/_threshold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndfilters/_threshold.py -------------------------------------------------------------------------------- /dask_image/ndfilters/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndfilters/_utils.py -------------------------------------------------------------------------------- /dask_image/ndfourier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndfourier/__init__.py -------------------------------------------------------------------------------- /dask_image/ndfourier/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndfourier/_utils.py -------------------------------------------------------------------------------- /dask_image/ndinterp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndinterp/__init__.py -------------------------------------------------------------------------------- /dask_image/ndinterp/_affine_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndinterp/_affine_transform.py -------------------------------------------------------------------------------- /dask_image/ndinterp/_map_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndinterp/_map_coordinates.py -------------------------------------------------------------------------------- /dask_image/ndinterp/_rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndinterp/_rotate.py -------------------------------------------------------------------------------- /dask_image/ndinterp/_spline_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndinterp/_spline_filters.py -------------------------------------------------------------------------------- /dask_image/ndmeasure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndmeasure/__init__.py -------------------------------------------------------------------------------- /dask_image/ndmeasure/_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndmeasure/_utils/__init__.py -------------------------------------------------------------------------------- /dask_image/ndmeasure/_utils/_find_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndmeasure/_utils/_find_objects.py -------------------------------------------------------------------------------- /dask_image/ndmeasure/_utils/_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndmeasure/_utils/_label.py -------------------------------------------------------------------------------- /dask_image/ndmorph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndmorph/__init__.py -------------------------------------------------------------------------------- /dask_image/ndmorph/_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndmorph/_ops.py -------------------------------------------------------------------------------- /dask_image/ndmorph/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/dask_image/ndmorph/_utils.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/coverage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/docs/coverage.rst -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/release/generate_release_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/docs/release/generate_release_notes.py -------------------------------------------------------------------------------- /docs/release/release_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/docs/release/release_guide.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/test_dask_image/test_imread/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/test_dask_image/test_imread/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_imread/test_core.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_imread/test_cupy_imread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_imread/test_cupy_imread.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndfilters/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndfilters/test__conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndfilters/test__conv.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndfilters/test__diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndfilters/test__diff.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndfilters/test__edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndfilters/test__edge.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndfilters/test__gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndfilters/test__gaussian.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndfilters/test__generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndfilters/test__generic.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndfilters/test__order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndfilters/test__order.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndfilters/test__smooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndfilters/test__smooth.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndfilters/test__threshold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndfilters/test__threshold.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndfilters/test__utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndfilters/test__utils.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndfilters/test_cupy_ndfilters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndfilters/test_cupy_ndfilters.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndfilters/test_cupy_threshold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndfilters/test_cupy_threshold.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndfourier/test__utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndfourier/test__utils.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndfourier/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndfourier/test_core.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndinterp/test_affine_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndinterp/test_affine_transformation.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndinterp/test_map_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndinterp/test_map_coordinates.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndinterp/test_rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndinterp/test_rotate.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndinterp/test_spline_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndinterp/test_spline_filter.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndmeasure/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndmeasure/test__utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndmeasure/test__utils.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndmeasure/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndmeasure/test_core.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndmeasure/test_find_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndmeasure/test_find_objects.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndmorph/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndmorph/test__utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndmorph/test__utils.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndmorph/test_cupy_ndmorph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndmorph/test_cupy_ndmorph.py -------------------------------------------------------------------------------- /tests/test_dask_image/test_ndmorph/test_ndmorph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dask/dask-image/HEAD/tests/test_dask_image/test_ndmorph/test_ndmorph.py --------------------------------------------------------------------------------