Arthur Alaniz, Tina Mantaring: Difference between revisions

From Psych 221 Image Systems Engineering
Jump to navigation Jump to search
imported>Cmgmant
imported>Cmgmant
Line 59: Line 59:
The block diagram of the joint denoising and demosaicking algorithm is shown below.
The block diagram of the joint denoising and demosaicking algorithm is shown below.


[[File:fig_LPA-ICI-diagram.png]]
[[File:fig_LPA-ICI-diagram.png | 500px]]


We see here that, using our pre-designed filter kernels, the denoising of the CFA values and the interpolation of green pixels at the red and blue locations happens simultaneously. Then, using the denoised Bayer data and the noisy, fully-interpolated green channel, the full-noise free green channel is produced, as well as the interpolated red and blue pixels at the blue and red locations, respectively. Finally, using the noise-free green channel, the red and blue pixels are interpolated at the green locations, producing our final, 3-channel image.
We see here that, using our pre-designed filter kernels, the denoising of the CFA values and the interpolation of green pixels at the red and blue locations happens simultaneously. Then, using the denoised Bayer data and the noisy, fully-interpolated green channel, the full-noise free green channel is produced, as well as the interpolated red and blue pixels at the blue and red locations, respectively. Finally, using the noise-free green channel, the red and blue pixels are interpolated at the green locations, producing our final, 3-channel image.

Revision as of 21:10, 18 March 2011

Introduction

As the use of digital cameras becomes more and more widespread, the imaging algorithms that go into these cameras have also become more sophisticated. The typical digital camera uses a processing pipeline to convert raw sensor values to a final image, and the different parts of the pipeline may involve correcting for hardware defects, interpolating color filter array values, removing noise, and performing color space transformations. As more and more focus is being given to this field, the pipeline algorithms are also becoming more and more complex. However, one must ask the question: do these complex algorithms really outperform their simpler, more straightforward counterparts?

Methods

Denoising and Demosaicking

For our project, the primary algorithm we chose for our imaging pipeline was the one presented in the paper “Denoising and Interpolation of Noisy Bayer Data with Adaptive Cross-Color Filters”, by D. Paliy, A. Foi, R. Bilcu, and V. Katkovnik. Their technique performs simultaneous denoising and demosaicking using directional adaptive filters that are based on the concepts of local polynomial approximation (LPA) and intersection of confidence intervals (ICI). Their paper is summarized in this section.

Local Polynomial Approximation

Local polynomial approximation, or LPA, works on the assumption that the data in some local region can be fitted to a polynomial function. The cross-color filters used in the algorithm are linear combinations of LPA smoothing and difference filters that operate on complimentary color channels.

The above figure shows an example of an LPA smoothing filter (left) and an LPA difference filter (right). The combined LPA cross-color filter is shown below, where the differing colors illustrate that the smoothing and difference components work on different color channels.

If we let gm,s,θ(k) denote a directional 1D convolution kernel, where m is the polynomial order, s is the scale or size of the kernel (kernel width), k is the order of the derivative, and θ is the direction, then we can write the interpolation kernels g¯s,θ and the denoising kernels g~s,θ as follows:

g¯s,θ=(1α)g0,s,θ(0)+αg1,s,θ(0)+βg1,s,θ(1)
g~s,θ=(1α)g0,s,θ(0)+αg1,s,θ(0)+βg1,s,θ(1)

Note that there are 4 possible directions for the interpolation filters, while the denoising filters use 8 directions. Aside from this, however, the structures for the interpolation and denoising kernels are very similar. Indeed, the primary difference between them is that their component filters operate on different support channels. This is shown in the figure below.

In the figure, (a) illustrates how the green pixel is interpolated at position g(0). The smoothing components of the interpolation filter operate on the green pixels, while the difference component operates on the red pixel. In (b), we see how denoising of the green pixel at g(0) is done. The smoothing components of the denoising filter operate on the green pixels, while the difference component operate on the red pixels. Similarly, when we are denoising a red pixel, as in (c), the smoothing components operate on the red pixels, while the difference component operates on the green pixels. Finally, since the denoising filters have 8 directions, they can operate along diagonals, which is shown in (d). When denoising green pixels along diagonals, we have only green pixels to deal with, and so there is no difference component. However, when we are denoising red or blue pixels, the smoothing component operates on the same channel while the difference component operates on the complimentary color channel.

Since the filters are directional, the origin of the filter is not in the center, but is located to one side. Obtaining the estimate is done by convolving the filter with the input pixels. That is, if z is our noisy CFA data, then for each scale s1<s2<s3<...<sn, we obtain the interpolation and denoising estimates y¯s,θ(x) and y~s,θ(x) at each pixel position x as follows:

y¯s,θ(x)=(g¯s,θ*z)(x)
y~s,θ(x)=(g~s,θ*z)(x)

Intersection of Confidence Intervals

We created the interpolation and denoising filters g¯s,θ and g~s,θ for different scales s. The goal of ICI is to choose the largest scale for which the local polynomial approximation is still valid. This is done as follows:

First, we find the standard deviations of our interpolation and denoising estimates using some estimate of the standard deviation of the noise. This is done as follows:

σy¯s,θ(x)=(g¯s,θ2*σ2)(x)
σy~s,θ(x)=(g~s,θ2*σ2)(x)

In the above formulas, σ is the estimated standard deviation of the noise. The paper gives two examples of signal-dependent noise models, and their corresponding standard deviation estimates:

  • Poisson noise: σ^=z/χ, and χ=0.5447
  • Nonstationary Gaussian noise with signal-dependent standard deviation: σ^=|k0+k1z|, and k0=10,k1=0.1

Next, for our sets of estimates {y¯s,θ:s ϵ {s1,s2,...sn}} and {y~s,θ:s ϵ {s1,s2,...sn}}, we can obtain sets of confidence intervals as follows:

D¯i=[y¯s,θ(x)ΓDσy¯s,θ(x), y¯s,θ(x)+ΓDσy¯s,θ(x)]
D~i=[y~s,θ(x)Γdσy~s,θ(x), y~s,θ(x)+ΓDσy~s,θ(x)]

where i denotes the index of the scale that was used.

Finally, we find our adaptive scale for interpolation i+ by finding the largest i such that the intersection of confidence intervals Ii=j=1iD¯i is nonempty. Using this scale i+, our interpolation estimate will then be y¯si+,θ. Similarly, we find our adaptive scale for denoising i+ by finding the largest i such that the intersection of confidence intervals Ii=j=1iD~i is nonempty. This will give us our denoising estimate of y~si+,θ.

Anisotropic Denoising and Interpolation

Combining the adaptive-scale kernels in all directions gives us an idea of the best local space for which the polynomial model fits the data. The figure below shows the combined denoising kernels for the red pixel in the center.


After applying the ICI criterion, we obtained adaptive-scale estimates from each direction θ. These directional denoised and interpolated estimates can be linearly combined to produce the final pixel value at a location x. The actual formulas used to do this can be found in [1].

The block diagram of the joint denoising and demosaicking algorithm is shown below.

We see here that, using our pre-designed filter kernels, the denoising of the CFA values and the interpolation of green pixels at the red and blue locations happens simultaneously. Then, using the denoised Bayer data and the noisy, fully-interpolated green channel, the full-noise free green channel is produced, as well as the interpolated red and blue pixels at the blue and red locations, respectively. Finally, using the noise-free green channel, the red and blue pixels are interpolated at the green locations, producing our final, 3-channel image.

Noise Estimation

Post-Filtering

Color Correction

Results

Conclusions

References

[1] Paliy, D., A.Foi, R. Bilcu, V. Katkovnik, “Denoising and Interpolation of Noisy Bayer Data with Adaptive Cross-Color Filters”, SPIE-IS&T Electronic Imaging, Visual Communications and Image Processing 2008, vol. 6822, San Jose, CA, January 2008.

[2] Paliy, D., V. Katkovnik, R. Bilcu, S. Alenius, K. Egiazarian, “Spatially Adaptive Color Filter Array Interpolation for Noiseless and Noisy Data”, International Journal of Imaging Systems and Technology (IJISP), Special Issue on Applied Color Image Processing, vol. 17, iss. 3, pp. 105-122, October 2007.

[3] Foi, A., M. Trimeche, V. Katkovnik, and K. Egiazarian, “Practical Poissonian-Gaussian noise modeling and fitting for single-image raw-data”, IEEE Trans. Image Process., vol. 17, no. 10, pp. 1737-1754, October 2008.

[4] Foi, A., S. Alenius, V. Katkovnik, and K. Egiazarian, “Noise measurement for raw data of digital imaging sensors by automatic segmentation of non-uniform targets”, IEEE Sensors Journal, vol. 7, no. 10, pp. 1456-1461, October 2007.

Appendix

Sources and Results

Work Breakdown