From 62c1beccb59d714b96e9597fbbadd0bddab55972 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Tue, 16 Oct 2012 17:28:42 +0200 Subject: [PATCH] Fix description of denoising filters --- doc/examples/plot_denoise.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/examples/plot_denoise.py b/doc/examples/plot_denoise.py index 45e5e4b5..12e8b9b6 100644 --- a/doc/examples/plot_denoise.py +++ b/doc/examples/plot_denoise.py @@ -16,12 +16,13 @@ Total variation filter The result of this filter is an image that has a minimal total variation norm, while being as close to the initial image as possible. The total variation is -the L1 norm of the gradient of the image, and minimizing the total variation. +the L1 norm of the gradient of the image. Bilateral filter ---------------- -A bilateral filter is an edge-preserving and noise reducing denoising filter. -It averages pixel based on their spatial closeness and radiometric similarity. + +A bilateral filter is an edge-preserving and noise reducing filter. It averages +pixels based on their spatial closeness and radiometric similarity. """