{"worksheets": [{"cells": [{"cell_type": "markdown", "metadata": {}, "source": ["Linear Signal Denoising", "=======================", "", "*Important:* Please read the [installation page](http://gpeyre.github.io/numerical-tours/installation_python/) for details about how to install the toolboxes.", "$\\newcommand{\\dotp}[2]{\\langle #1, #2 \\rangle}$", "$\\newcommand{\\enscond}[2]{\\lbrace #1, #2 \\rbrace}$", "$\\newcommand{\\pd}[2]{ \\frac{ \\partial #1}{\\partial #2} }$", "$\\newcommand{\\umin}[1]{\\underset{#1}{\\min}\\;}$", "$\\newcommand{\\umax}[1]{\\underset{#1}{\\max}\\;}$", "$\\newcommand{\\umin}[1]{\\underset{#1}{\\min}\\;}$", "$\\newcommand{\\uargmin}[1]{\\underset{#1}{argmin}\\;}$", "$\\newcommand{\\norm}[1]{\\|#1\\|}$", "$\\newcommand{\\abs}[1]{\\left|#1\\right|}$", "$\\newcommand{\\choice}[1]{ \\left\\{ \\begin{array}{l} #1 \\end{array} \\right. }$", "$\\newcommand{\\pa}[1]{\\left(#1\\right)}$", "$\\newcommand{\\diag}[1]{{diag}\\left( #1 \\right)}$", "$\\newcommand{\\qandq}{\\quad\\text{and}\\quad}$", "$\\newcommand{\\qwhereq}{\\quad\\text{where}\\quad}$", "$\\newcommand{\\qifq}{ \\quad \\text{if} \\quad }$", "$\\newcommand{\\qarrq}{ \\quad \\Longrightarrow \\quad }$", "$\\newcommand{\\ZZ}{\\mathbb{Z}}$", "$\\newcommand{\\CC}{\\mathbb{C}}$", "$\\newcommand{\\RR}{\\mathbb{R}}$", "$\\newcommand{\\EE}{\\mathbb{E}}$", "$\\newcommand{\\Zz}{\\mathcal{Z}}$", "$\\newcommand{\\Ww}{\\mathcal{W}}$", "$\\newcommand{\\Vv}{\\mathcal{V}}$", "$\\newcommand{\\Nn}{\\mathcal{N}}$", "$\\newcommand{\\NN}{\\mathcal{N}}$", "$\\newcommand{\\Hh}{\\mathcal{H}}$", "$\\newcommand{\\Bb}{\\mathcal{B}}$", "$\\newcommand{\\Ee}{\\mathcal{E}}$", "$\\newcommand{\\Cc}{\\mathcal{C}}$", "$\\newcommand{\\Gg}{\\mathcal{G}}$", "$\\newcommand{\\Ss}{\\mathcal{S}}$", "$\\newcommand{\\Pp}{\\mathcal{P}}$", "$\\newcommand{\\Ff}{\\mathcal{F}}$", "$\\newcommand{\\Xx}{\\mathcal{X}}$", "$\\newcommand{\\Mm}{\\mathcal{M}}$", "$\\newcommand{\\Ii}{\\mathcal{I}}$", "$\\newcommand{\\Dd}{\\mathcal{D}}$", "$\\newcommand{\\Ll}{\\mathcal{L}}$", "$\\newcommand{\\Tt}{\\mathcal{T}}$", "$\\newcommand{\\si}{\\sigma}$", "$\\newcommand{\\al}{\\alpha}$", "$\\newcommand{\\la}{\\lambda}$", "$\\newcommand{\\ga}{\\gamma}$", "$\\newcommand{\\Ga}{\\Gamma}$", "$\\newcommand{\\La}{\\Lambda}$", "$\\newcommand{\\si}{\\sigma}$", "$\\newcommand{\\Si}{\\Sigma}$", "$\\newcommand{\\be}{\\beta}$", "$\\newcommand{\\de}{\\delta}$", "$\\newcommand{\\De}{\\Delta}$", "$\\newcommand{\\phi}{\\varphi}$", "$\\newcommand{\\th}{\\theta}$", "$\\newcommand{\\om}{\\omega}$", "$\\newcommand{\\Om}{\\Omega}$"]}, {"cell_type": "markdown", "metadata": {}, "source": ["This numerical tour introduces basic signal denoising methods."]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["from __future__ import division", "import nt_toolbox as nt", "from nt_solutions import denoisingsimp_2_linear as solutions", "%matplotlib inline", "%load_ext autoreload", "%autoreload 2"]}, {"cell_type": "markdown", "metadata": {}, "source": ["Noisy Signal Formation", "----------------------", "In these numerical tour, we simulate noisy acquisition by adding some", "white noise (each sample is corrupted by adding an independant Gaussian", "variable).", "", "", "This is useful to test in an oracle maner the performance of our methods.", "", "", "Length $N$ of the signal."]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["N = 1024"]}, {"cell_type": "markdown", "metadata": {}, "source": ["We load a clean signal $x_0 \\in \\RR^N$."]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["name = 'piece-regular'", "x0 = rescale(load_signal(name, N))"]}, {"cell_type": "markdown", "metadata": {}, "source": ["Variance of the noise."]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["sigma = .04"]}, {"cell_type": "markdown", "metadata": {}, "source": ["We add some noise to it to obtain the noisy signal $y = x_0 + w$.", "Here $w$ is a realization of a Gaussian white noise of variance", "$\\si^2$."]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["y = x0 + sigma*randn(size(x0))"]}, {"cell_type": "markdown", "metadata": {}, "source": ["Display the clean and the noisy signals."]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["subplot(2, 1, 1)", "plot(x0); axis([1 N -.05 1.05])", "subplot(2, 1, 2)", "plot(y); axis([1 N -.05 1.05])"]}, {"cell_type": "markdown", "metadata": {}, "source": ["Linear Signal Denoising", "-----------------------", "We consider a noising estimator $x \\in \\RR^N$ of $x_0$ that only", "depends on the observation $y$. Mathematically speaking, it is thus a", "random vector that depends on the noise $w$.", "", "", "A translation invariant linear denoising is necessarely a convolution", "with a kernel $h$", "$$ x = x_0 \\star h $$", "where the periodic convolution between two vector is defined as", "$$ (a \\star b)_i = \\sum_j a(j) b(i-j). $$", "", "", "It can be computed over the Fourier domain as", "$$ \\forall \\om, \\quad \\hat x(\\om) = \\hat x_0(\\om) \\hat h(\\om). $$"]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["cconv = lambda a, b: real(ifft(fft(a).*fft(b)))"]}, {"cell_type": "markdown", "metadata": {}, "source": ["We use here a Gaussian fitler $h$ parameterized by", "the bandwith $\\mu$."]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["normalize = lambda h: h/ sum(h(: ))", "t = [0: N/ 2-1, -N/ 2: -1]'", "h = lambda mu: normalize(exp(-(t.^2)/ (2*mu^2)))"]}, {"cell_type": "markdown", "metadata": {}, "source": ["Display the filter $h$ and its Fourier transform."]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["mu = 10", "", "subplot(2, 1, 1)", "plot(t, h(mu)); axis('tight')", "title('h')", "subplot(2, 1, 2)", "plot(t, real(fft(h(mu)))); axis('tight')", "title('fft(h)')"]}, {"cell_type": "markdown", "metadata": {}, "source": ["Shortcut for the convolution with $h$."]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["denoise = lambda x, mu: cconv(h(mu), x)"]}, {"cell_type": "markdown", "metadata": {}, "source": ["Display a denoised signal."]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["plot(denoise(y, mu))", "axis([1 N -.05 1.05])"]}, {"cell_type": "markdown", "metadata": {}, "source": ["__Exercise 1__", "", "Display a denoised signal for several values of $\\mu$."]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["solutions.exo1()"]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["## Insert your code here."]}, {"cell_type": "markdown", "metadata": {}, "source": ["__Exercise 2__", "", "Display the evolution of the oracle denoising error", "$ \\norm{y-x_0} $ as a function of $\\mu$.", "Set $\\mu$ to the value of the optimal parameter.", "etrieve the best denoising result"]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["solutions.exo2()"]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["## Insert your code here."]}, {"cell_type": "markdown", "metadata": {}, "source": ["Display the results."]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["plot(denoise(y, mu))", "axis([1 N -.05 1.05])"]}, {"cell_type": "markdown", "metadata": {}, "source": ["Wiener Filtering", "----------------", "We suppose here that $x_0$ is a realization of a random vector $x_0$,", "whose distribution is Gaussian with a stationary covariance $c$,", "and we denote $P_{X_0}(\\om) = \\hat c(\\om)$ the power-spectrum of", "$x_0$.", "", "", "Recall that $w$ is a realization of a random vector $W$", "distributed according to $\\Nn(0,\\si^2 \\text{Id})$.", "", "", "The (oracle) optimal filter minimizes the risk", "$$ R(h) = \\EE_{W,X_0}( \\norm{ X_0 - h \\star (X_0 + W) }^2 ). $$", "", "", "One can show that the solution of this problem, the so-called Wiener filter,", "is defined as", "$$ \\forall \\om, \\quad \\hat h(\\om) = \\frac{ P_{X_0}(\\om) }{ P_{X_0}(\\om) + \\si^2 }. $$", "", "", "We estimate $ P_{X_0} $ using the periodogram associated to the", "realization $x_0$, i.e.", "$$ P_{X_0} \\approx \\frac{1}{N} \\abs{\\hat x_0}^2. $$"]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["P = 1/ N * abs(fft(x0)).^2"]}, {"cell_type": "markdown", "metadata": {}, "source": ["Compute the approximate Wiener filter."]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["h_w = real(ifft(P ./ (P + sigma^2)))"]}, {"cell_type": "markdown", "metadata": {}, "source": ["Note that this is a theoretical filter, because in practice one does not", "have access to $x_0$.", "", "", "Display it."]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["plot(fftshift(h_w)); axis tight"]}, {"cell_type": "markdown", "metadata": {}, "source": ["Display the denoising result."]}, {"cell_type": "code", "language": "python", "metadata": {}, "outputs": [], "collapsed": false, "input": ["plot(cconv(y, h_w))", "axis([1 N -.05 1.05])"]}, {"cell_type": "markdown", "metadata": {}, "source": ["Note that this denoising is not very efficient, because the hypothesis of", "stationarity of $X_0$ is not realistic for such piecewise-regular", "signal."]}]}], "nbformat": 3, "metadata": {"name": ""}, "nbformat_minor": 0}