Image Alignment Code
May 27th, 2008
/// <summary> /// Aligns two images. Uses highly-local, non-affine alignment. /// Also compensates for local brightness and colour changes. /// </summary> /// <param name=”Input”>The image to align</param> /// <param name=”Reference”>The image to align it to</param> /// <returns>The image aligned to the reference image</return> public Image Align(Image Input, Image Reference) { return Reference; }
[?]
You can leave a response, or trackback from your own site.
You may star this entry if you think people will enjoy it.
Type in a relevant tag, and click the button, and help organize this blog's information.
[More Help]
[More Help]
3 Responses to “Image Alignment Code”
Leave a Reply
Apathy Sketchpad is proudly powered by
WordPress
Entries (RSS)
and Comments (RSS).

May 28th, 2008 at 22:35
Brilliant.
What language is that though? It looks like C# except for the “function” keyword.
May 28th, 2008 at 22:37
Idunno. I use a heady mix of C# and Matlab at work. I think it came out as a pastiche. I think I’ll switch it to pure C# for the sake of consistency.
May 29th, 2008 at 13:51
Aah, now it’s in C# througout I understand this post entirely. Funny stuff!