Which of the openCV methods would be suitable for finding the position of a captured image on a larger image, which the capture will be within.
My intention is to match a captured image of the floor with a full image of the entire floor to find the current location. I am only aware of template matching as below;
match = cv2.matchTemplate(capture, floor, method)
Where the third argument would be the cv2 template matching method used. How might this be done?
Thanks!