gitextract_iofc2rra/ ├── .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 ├── 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_find_objects_no_dataframe.py └── test_ndmorph/ ├── __init__.py ├── test__utils.py ├── test_cupy_ndmorph.py └── test_ndmorph.py