You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Gaussian blur filter (for example), can be changed to be a blur along x, transpose, then blur along y (and transpose again). This might be more efficient in the end.
It's best if users give just a 1D filter and say it's separable. We can then call a separate separable_filter(...) function, which does the filter!(...), transpose(), and filter!(...), like we do for sobel.
note, this is related to #38, which introduces filtering.
The text was updated successfully, but these errors were encountered:
The Gaussian blur filter (for example), can be changed to be a blur along x, transpose, then blur along y (and transpose again). This might be more efficient in the end.
It's best if users give just a 1D filter and say it's separable. We can then call a separate
separable_filter(...)
function, which does thefilter!(...)
,transpose()
, andfilter!(...)
, like we do for sobel.note, this is related to #38, which introduces filtering.
The text was updated successfully, but these errors were encountered: