dask-image / dask-ndmorph

A library of N-D morphological operations for Dask Arrays
BSD 3-Clause "New" or "Revised" License
1 stars 3 forks source link

Add binary morphological operations #17

Closed jakirkham closed 7 years ago

jakirkham commented 7 years ago

Partially addresses issue ( https://github.com/dask-image/dask-ndmorph/issues/12 ).

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.