views:

143

answers:

3

Does anybody know some open-source framework, code examples etc for the follwoing problem? I have a few images of the same object. Need to find a way how to stitch them into one panoramic image.

+2  A: 

See Panorama Tools.

The project is also active (not zombie open source projects).

Another way is to get a command line based tool and use calls the program directly in your program.

If you are interested in creating implementations on your own, most existing algorithms are usually published as academic papers. A good way to find better algorithms is to rank them by citation rate. You can find them using Google Scholar here.

rxin
A: 

Try Hugin. This is an open source GUI for Panorama Tools. Panorama tools does have a basic GUI, but Hugin is superior.

Ed_S
A: 

The Accord.NET Framework for .NET (written in C#) also supports this. There is an article on CodeProject, entitled "Automatic Image Stitching with Accord.NET" demonstrating this feature (and some of the theory behind it).

Cesar