kabasset / Linx

Extensible ND image laboratory
Apache License 2.0
3 stars 0 forks source link

Benchmark convolution vs. morphology designs and select the fastest #9

Closed kabasset closed 9 months ago

kabasset commented 1 year ago

Convolution dispatching is performed by operator()() through an enum, while morphology is dispatched at construction with a member functor. The latter one is extensible and should be preferred unless slower. To be benchmarked...

kabasset commented 9 months ago

Merged through FilterMixin