From dfd8cb4fc203594df6ed14dede882381041e5930 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Tue, 25 Dec 2012 11:00:38 +0100 Subject: [PATCH] Fix typo in denoise_tv_bregman doc string --- skimage/filter/_denoise_cy.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/filter/_denoise_cy.pyx b/skimage/filter/_denoise_cy.pyx index ea046a0a..47e2a6d5 100644 --- a/skimage/filter/_denoise_cy.pyx +++ b/skimage/filter/_denoise_cy.pyx @@ -183,7 +183,7 @@ def denoise_tv_bregman(image, double weight, int max_iter=100, double eps=1e-3): """Perform total-variation denoising using split-Bregman optimization. Total-variation denoising (also know as total-variation regularization) - tries to find an image with less total total-variation under the constraint + tries to find an image with less total-variation under the constraint of being similar to the input image, which is controlled by the regularization parameter.