FastRunningMedian v0.3.0
There were breaking changes to the stateful API. Here is a quick overview of how to upgrade:
mf = MedianFilter(1, 3)
->mf = MedianFilter(Int64, 3); grow!(mf, 1)
window_size(mf)
->window_length(mf)
grow!
,shrink!
androll!
now return the median filter instead of nothing. This might cause unintended problems in some cases but aligns the API with other modifying methods in Julia base.
For details see the README file.
Closed issues: