neuro-ml / imops

Efficient parallelizable algorithms for multidimensional arrays to speed up your data pipelines
https://neuro-ml.github.io/imops/
MIT License
21 stars 1 forks source link

skimage morphology benchmarks #43

Closed ogencoglu closed 1 year ago

ogencoglu commented 1 year ago

Awesome work!

You have benchmarks of scipy and Cython backends for binary morphology ops. Does scipy here correspond to scikit-image? If not, do you know how scikit-image performs in those operations?

vovaf709 commented 1 year ago

Thanks :) Yea, Scipy backend for morphology ops correspond to scikit-image.

Actually in the imopswe do not distinguish between scipy and scikit-image as latter almost always uses scipy functions internally. Particularly this is true for morphology ops

ogencoglu commented 1 year ago

Awesome, thanks for the swift reply!