CS 736 : Assignment 2 solution

$29.99

Original Work ?
Category: You will Instantly receive a download link for .ZIP solution file upon Payment

Description

5/5 - (3 votes)

1. (20 points) Diffusion Tensor Magnetic Resonance Imaging. Consideradiffusion-MRIexperiment(in2D)thatperformsdiffusionimagingforachosensetof N gradient directions{gi}N i=1 and provides the values{S(gi)}N i=1 corresponding to each direction. The direction vectors are: {gi}6 i=1 = {[1,0],[0.866,0.5],[0.5,0.866],[0,1],[−0.5,0.866],[−0.866,0.5]}. For a particular pixel in the image, the acquired data for each direction vector (in the same sequence as above) are: {S(gi)}6 i=1 = {0.5045−i0.0217,0.6874 + i0.0171,0.3632 + i0.1789,0.3483 + i0.1385,0.2606− i0.0675,0.2407 + i0.1517}. Use a diffusion-tensor model that represents diffusion using a 2×2 symmetric positive-definite matrix D. Assume S0 = 1 and b0 = 0.1.
(a) (14 points) Given this data, estimate D using a suitable optimization algorithm, report D, and plot the sequences of the logarithm of the objective function and the 4 entries in D over iteration. (b) (3 points) Report the (principal) direction (unit vector) along which the diffusion in the 2D plane is the strongest. (c) (3 points) How much more (by what multiplicative factor) is the diffusion in the principal direction as compared to the diffusion in the direction orthogonal to it ?
2. (50 marks) Denoising a Phantom Magnetic Resonance Image. Download the 2D noiseless image and the 2D noisy image available at http://www.cse.iitb. ac.in/~suyash/cs736/assignmentImageDenoisingPhantom.mat.zip Implement a maximum-a-posteriori Bayesian image-denoising algorithm that uses a noise model coupled with a MRF prior that uses a 4-neighbor neighborhood system (each pixel has 4 neighbors: left, right, up, down; the neighborhood wraps around at image boundaries) that has cliques of size no more than 2.
1
Usegradientascent(ordescent)optimizationwithdynamicstepsize. Ensurethatthevalueofthe objective function (i.e., the log posterior or its negative) at each iteration increases (or decreases if using gradient descent). Use the noisy image as the initial solution. Use 3 different MRF priors where the potential functions V (xi,xj) := g(xi −xj) underlying the MRF penalize the difference between the neighboring voxel values xi,xj as follows (see class Notesathttp://www.cse.iitb.ac.in/\%7Esuyash/cs736/Slides\_AlgoMIP\_ImagePrior. pdf for details). You may rely on the circshift() function in Matlab when computing differences between every pixel in the image and its neighbors. Introduce a parameter α ∈ [0,1] to control the weighting between the prior (weight α) and the likelihood (weight 1−α). Specifically, implement the following functionality as part of the denoising algorithm:
(a) (3 marks) A Complex-Gaussian noise model. You don’t need the noise level because that parameter can be absorbed in 1−α that you’ll tune manually (Tuning α essentially manipulates the noise level, in case of the likelihood. So we can ignore the noise level σ when tuning α manually. Use σ = 1). (b) (3 marks) MRF prior: Quadratic function: g1(u) := |u|2. (c) (3 marks) MRF prior: Discontinuity-adaptive Huber function: g2(u) := 0.5|u|2, when|u|≤ γ and g(u) := γ|u|−0.5γ2, when|u| γ, where 0 < γ < ∞is a constant. (d) (3 marks) MRF prior: Discontinuity-adaptive function: g3(u) := γ|u|− γ2 log(1 + |u|/γ), where 0 < γ < ∞is a constant. For each MRF prior, manually tune the parameters α and γ (where applicable) to denoising the noisy image in order to achieve the least possible relative root-mean-squared error (RRMSE). The RRMSE for 2 complex images A and B is defined as : RRMSE(A,B) =qPp(|A(p)|−|B(p)|)2/qPp|A(p)|2, where the summation is over all pixels p. Always use the noiseless image as A. Report the following: (a) (0 point) Report the RRMSE between the noisy and noiseless images. (b) (15 marks) Report the optimal values of the parameters and the corresponding RRMSEs for each of the 3 denoising algorithms. For each optimal parameter value reported (for each of the 3 denoising algorithms), give evidence of the optimality of the reported values by reporting the RRMSE values for two nearby parameter values (around the optimal) at plus/minus 20% of the optimal value. That is, if a∗,b∗ are the optimal parameter values, then report: a∗,b∗,RRMSE(a∗,b∗), RRMSE(1.2a∗,b∗),RRMSE(0.8a∗,b∗), RRMSE(a∗,1.2b∗),RRMSE(a∗,0.8b∗). (Tip: the optimal values for α might be very close to extreme limits of the allowed range. Be aware of that possibility.) . (c) (15 marks) Show the following 5 images (at each pixel, show the magnitude of the pixel value) in the report using exactly the same colormap (i) Noiseless image, (ii) Noisy image, (iii) Image denoised using quadratic prior g1(·) and optimal parameter tuning, (iv) Image 2 denoised using Huber prior g1(·) and optimal parameter tuning, (v) Image denoised using discontinuity-adaptive prior g3(·) and optimal parameter tuning. (d) (8 marks) Show the plots of the objective-function values (vertical axis) versus iteration (horizontal axis) corresponding to each of the 3 denoised results in (iii), (iv), and (v) above. 3. (30 marks) Denoising a Magnetic Resonance Image of the Brain. Download the 2D noisy image available at http://www.cse.iitb.ac.in/~suyash/cs736/assignmentImageDenoisingBrainNoisy.mat. zip Use all 3 maximum-a-posteriori Bayesian denoising algorithms implemented to denoise the noisy brain image. Manually tune the parameters to give the best denoised image that, based on your judgment, gives the right tradeoff between noise removal and edge preservation. Report the following: (a) (3 marks) Using the (complex) intensities in the background (i.e., air), estimate the noise level, i.e., the standard deviation of the i.i.d. Gaussian noise in the real or imaginary components of the complex MR image. (b) (18 marks) Show the following 4 images (at each pixel, show the magnitude of the pixel value) in the report using exactly the same colormap (i) Noisy image, (ii) Image denoised using quadratic prior g1(·) and manual parameter tuning, (iii) Image denoised using Huber prior g1(·) and manual parameter tuning, and (iv) Image denoised using discontinuityadaptive prior g3(·) and manual parameter tuning. (c) (9 marks) Show the plots of the objective-function values (vertical axis) versus iteration (horizontal axis) corresponding to each of the 3 denoised results in (ii), (iii), and (iv) above.