Optimize median filtering
Open
- Dominant language
- Python
- Stars
- 5
- Forks
- 3
- PR merge metrics
- No merged PRs in 30d
Description
Median filtering from skimage is very [memory intensive](https://github.com/scipy/scipy/issues/4878) as it is using scipy's `ndi.median_filter()` under the hood. This can cause a `MemoryError` when the kernel or the image is too large. See whether we can implement our own version based on some of the suggestions in the linked SciPy issue.
Contributor guide
Assessment
This issue has not been assessed yet.