CSC320 Project 1: The Prokudin-Gorskii Colour Photo Collection (Worth: 8%)

emir

Sergei Prokudin-Gorskii was a pioneer of colour photography. In the early 20-th century, he travelled across Russia and took thousands of striking colour pictures. His technique consisted of taking three black-and-white pictures of the scene simultaneously, with each picture taken through a blue, green, or red filter. In 1948, his glass-plate negatives were purchased by the Library of Congress and are available on the web.

In this project, you will explore techniques to automatically combine the inverted blue, green, and red-filtered negatives into one colour photo.

The Input

As input, you will take in an image that contains the three inverted negatives (top to bottom: blue, green, red). An example of an image that you should work on is here. The images could be of different sizes. The images you should work with are are available here (old link with tiff images, which don't work on some (most?) systems).

Part 0

Briefly describe the image data that you are working with for the report. (This can be just one or two sentences.) Include examples of the images.

Part 1

Write code to extract the three black-and-white inverted negatives from the input image and to produce a colour image by combining the three colour channels.

The three inverted negatives can be aligned by matching the three black-and-white inverted negatives to each other to determine the optimal alignment. I suggest matching the green and the red inverted negatives to the blue inverted negative. The matching can be performed by varying the displacement of the negative that is being matched from -10 to 10 pixels along both the x and the y directions to find the best displacement. The matching metrics could be Normalized Cross-Correlation (NCC) and Sum of Squared Differences (SSD).

Obtain the colour image for several examples by matching the inverted negatives using both NCC and SSD. In your report, indicate which seems to work better. Are there any artefacts in the output? What may explain the artefacts

For Part 1, you may assume that the input image will be of size similar to that of 00757v.jpg

Hints

Part 2

The technique from Part 1 will only work for small images, and will take too long for larger images. This problem can be solved by rescaling the images with scipy.misc.imresize(), matching the small versions of the images to obtain a rough estimate of the match, and only then matching the large versions of the images. This procedure could be repeated several times. Implement matching so that it works for larger images as well. In the report, describe your results and the runtimes that you obtain.

What to submit

The project should be done using Python 2 and should run on CDF. Your report should be in PDF format. You should use LaTeX to generate the report, and submit the .tex file as well. A sample template will be posted soon.

Important:

Marking Schemce

Marking scheme

Acknowledgements

The project was created by Alexei Efros.

Valid HTML 4.01 Transitional