<< Chapter < Page | Chapter >> Page > |
Superresolution is based on the idea that images with slight shifts can be aligned and combined into a single, higher resolution image. While aligning images with respect to one another may not seem too complex at first, there are a number of technical details that muddy the waters. Additionally, superresolution requires registration results that are accurate to the subpixel level. While an error of one or two pixels sounds just fine, it would lead to a poor quality image after combination.
Let's first look at the impact of registration before delving into the details of the algorithm we chose. Consider the following two test images:
While these two images may appear to be the same, they are actually just slightly different from each other. While we could try to combine the images as they are now, we need to register them first to achieve a better result. Below two difference graphs illustrate the impact of registration, the first showing the difference before registration, and the other after.
Even though it is hard to see a visible difference when viewing the two images separately, the difference graphs above show how registration can still detect difference and account for them.
While there are a number of different techniques that can be used to register images, many of them are feature-based . They attempt to track the same set of points as they move from image to image. This can work well, but only if the points are detect accurately each time. Instead, we chose to use a featureless algorithm, which avoids feature points by using the flow of all pixels in the image. It improves upon the optical flow concept discussed in a previous module by allowing for changes in translation, rotation, scale, pan, and tilt between each image. The algorithm is detailed below.
To get better results, we can create a multi-resolution pyramid for each image first. This means that we generate several levels of increasingly blurry images. Starting at the blurriest level, we apply several iterations of the algorithm as described above. Then, we move up to a less blurry level and repeat, but we carry over the result from the previous level and use that as our starting point.
Notification Switch
Would you like to follow the 'Elec 301 projects fall 2006' conversation and receive update notifications?