From df9cd763a9e433a2f3c9213e7c2342525a5de4cf Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Wed, 10 Oct 2012 22:41:14 +0200 Subject: [PATCH] Remove stray debugging output. --- deconvolution_sharpen_effect.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/deconvolution_sharpen_effect.cpp b/deconvolution_sharpen_effect.cpp index d570eaa..6c319e1 100644 --- a/deconvolution_sharpen_effect.cpp +++ b/deconvolution_sharpen_effect.cpp @@ -250,12 +250,6 @@ void print_matrix(const MatrixXf &m) void DeconvolutionSharpenEffect::update_deconvolution_kernel() { - printf("circular blur radius: %5.3f\n", circle_radius); - printf("gaussian blur radius: %5.3f\n", gaussian_radius); - printf("correlation: %5.3f\n", correlation); - printf("noise factor: %5.3f\n", noise); - printf("\n"); - // Figure out the impulse response for the circular part of the blur. MatrixXf circ_h(2 * R + 1, 2 * R + 1); for (int y = -R; y <= R; ++y) { -- 2.39.2