i need to perform homography matching for multiple images ,how can i pass multiple image for the matching?
we have tutorial for single image homograpgy matching.....i have folder that contain some 100 images i need pass that all images and compare that with one reference image how can i do that one....any one please ans me? here the tuto for single image . link text
what are you trying to achieve ? what is the goal of it ?
(it sounds like the umpteenth attempt at abusing this for object detection)
the above one we have to pass two image one is source and another one is matching file....during run time the matching file compare with source file if perfect matches found it shows the homography modal.... i my case i have to pass multiple images as source file and only one match file so run time it compare all the images with match file and produce homography match if matches found...
i might misunderstand you here:
but right now, i'd say - your plan is broken. finding a homography is for when you know , that your object is in the scene, it is not for finding out if it's so or not. (that simply will not work). it's not a comparison mechanism for images.
apart from that, theres no real difference between doing that with 1 or several images. just repeat the whole process, over and over.
Mat img_object = imread( argv[1], IMREAD_GRAYSCALE ); Mat img_scene = imread( argv[2], IMREAD_GRAYSCALE );
here pass single image via scene instead of that i need to pass multiple images in the "scene" is it possible?