Adds implementations of binary_closing, binary_dilation, binary_erosion, and binary_opening for Dask Arrays. Creates these implementations through a mixture of wrapping the underlying SciPy functions, implementing some functionality with Dask Arrays directly, composing operations to get other operations, and so on. Tests all of them against their SciPy counterparts on small test data to make sure they work correctly.
Partially addresses issue ( https://github.com/dask-image/dask-ndmorph/issues/12 ).
Adds implementations of
binary_closing
,binary_dilation
,binary_erosion
, andbinary_opening
for Dask Arrays. Creates these implementations through a mixture of wrapping the underlying SciPy functions, implementing some functionality with Dask Arrays directly, composing operations to get other operations, and so on. Tests all of them against their SciPy counterparts on small test data to make sure they work correctly.