FeiYuePsych2012Project
Background
Motivate the problem. More details are required for custom projects.
Methods
The first step after transforming from RGB to YCoCg space is to do a non-linear remap of the chroma components. The Co and Cg values range from -1 to 1. Using the function described in Equation 1, we expand the lower region of the chroma value to increase precision. This is to take the advantage of the human vision system that the eye is more sensitive to chroma differences when the colors are present in small quantities as opposed to being almost saturated. The effects of Equation 1 is illustrated by Figure[].
Co_out = sqrt(abs(Co_in))*sin(Co_in)
The second step is to apply sharpening to the image. A low pass filter with the kernel of Equation 2 is applied to the original image. Then, the sharpening mask is produced by subtracting the low-passed image from the original image. Lastly, the sharpening mask is applied onto the image. The sharpening is only done to the luma channel, restricted to one quantization level. This effort is to reduce some of the quantization artifacts on the image, and to restore the original image, without making the resulting image overly sharpened.
1 2 1
2 4 2
1 2 1
The third step is to add noise to each of the Y, Co and Cg channels. This would affect the least significant bits during encoding, therefore reducing the banding effects. Less noise is added to the Cg' channel than the Co', and even less to the Y channel. This is because the human eye is more sensitive to the luma and the green chrominance channels.
subsection 1
subsection 2
Results
Organize your results in a good logical order (not necessarily historical order). Include relevant graphs and/or images. Make sure graph axes are labeled. Make sure you draw the reader's attention to the key element of the figure. The key aspect should be the most visible element of the figure or graph. Help the reader by writing a clear figure caption.
subsection 1
subsection 2
Conclusions
Describe what you learned. What worked? What didn't? Why? What would you do if you kept working on the project?
List references. Include links to papers that are online.
Appendix I - Code and Data
Upload source code, some result images, etc, and give a description of each link. In some cases, your acquired data may be too large to store practically. In this case, use your judgement (or consult one of us) and only link the most relevant data. Be sure to describe the purpose of your code and to edit the code for clarity. The purpose of placing the code online is to allow others to verify your methods and to learn from your ideas. It should be possible for someone else to generate result images using your code.