From aa973aeff227dd1d8b6b9ac43c31bf96cd956454 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Sun, 30 Jun 2013 10:59:34 +0200 Subject: [PATCH] Fix wrong module name --- skimage/filter/rank/bilateral.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/filter/rank/bilateral.py b/skimage/filter/rank/bilateral.py index a111dd7c..4eafac19 100644 --- a/skimage/filter/rank/bilateral.py +++ b/skimage/filter/rank/bilateral.py @@ -130,7 +130,7 @@ def bilateral_mean(image, selem, out=None, mask=None, shift_x=False, >>> bilat_ima = bilateral_mean(ima, disk(20), s0=10,s1=10) """ - return _apply(None, _bilateral16_cy.mean, image, selem, out=out, + return _apply(None, bilateral16_cy.mean, image, selem, out=out, mask=mask, shift_x=shift_x, shift_y=shift_y, s0=s0, s1=s1) @@ -188,5 +188,5 @@ def bilateral_pop(image, selem, out=None, mask=None, shift_x=False, """ - return _apply(None, _bilateral16_cy.pop, image, selem, out=out, + return _apply(None, bilateral16_cy.pop, image, selem, out=out, mask=mask, shift_x=shift_x, shift_y=shift_y, s0=s0, s1=s1)