Stitching Images with SIFT Features

asked 2015-08-20 15:19:09 -0600

procoding gravatar image

I am trying to create an image stitcher that uses SIFT features, but it appears that I cannot use SIFT with the OpenCV Stitcher class. I have already created a method of finding SIFT features and descriptors, but I am not sure how to pass these values to the Stitcher class.Is there a way to do so and if there is, what is it?

edit retag flag offensive close merge delete

Comments

You can find an example here

LBerger gravatar imageLBerger ( 2015-08-21 01:30:55 -0600 )edit

I have looked through this example before. I am still unsure how I would take my existing functions and put them in the format of a features finder. How do I figure out how my class should be formatted?

procoding gravatar imageprocoding ( 2015-08-21 13:10:45 -0600 )edit

You have to use google because I don't know exactely order. There is some interseting link here and here

In source code you can find how descriptors are computed and hence order in Mat descriptor

LBerger gravatar imageLBerger ( 2015-08-22 02:13:57 -0600 )edit