BellMoonVassiliev

From Psych 221 Image Systems Engineering
Revision as of 02:32, 16 March 2013 by imported>Projects221 (References - Resources and related work)
Jump to navigation Jump to search

Back to Psych 221 Projects 2013

Background

In many image processing applications, it is desirable to combine a series of images of the same scene in order to acheive a higher signal-to-noise ratio (SNR), higher resolution, or both. This can be done with a set of still frames or from a video sequence.

Work on super-resolution has focused primarily on grayscale data. There are several challenges to working with RGB data. The image channels should remain aligned, so that colors are not distorted. This is typically handled by splitting the image into luminance and chrominance channels, and performing the operations in that space [TODO: cite].

When these operations are performed after demosaicking, errors from the demosaicking process are treated as "signal" in the following steps. By performing demosaicking jointly on a set of images, we are able to reduce the color artifacts introduced by the Bayer pattern.

Methods

Our approach consists of an image alignment step, which finds the relative horizontal and vertical offsets between the LR images, and a demosaicking step which combines the data from LR images into a single HR image.

Image Alignment

  • Used phase correlation
  • Fit parabola to get subpixel resolution
  • Do least-squares fit to find a globally-consistent set of offsets

Demosaicking

Principles from single-image demosaicking

Generalization to multiple images

Results

Synthetic datasets

Real images

Conclusions

Here is where you say what your results mean.

References - Resources and related work

References

[1] S. Farsiu, M. Elad, and P. Milanfar, Multi-Frame Demosaicing and Super-Resolution of Color Images, IEEE Trans. on Image Processing, vol. 15, no. 1, pp. 141-159, January 2006.

Software

Appendix I - Code and Data

Code

All of our code is available on GitHub: [1]

Data

TODO

Appendix II - Work partition

TODO