Change method of homography calculation
Is it possible to make changes in RANSAC method that used in function findHomography
? I am using python 2.7, opencv 2.4.13 as cv2.pyd file and i don't see a way to change source files.
Or even better do somethig like this: findHomography(srcPoints, dstPoints, MYOWNMETHOD)
If this can be done on c++ i'll be glad to see possible solutions.
if you look at the docs , there's more than RANSAC.
c++ src is here , but chances to hook your own algo into this seem very low.
Ye i know that there is more algorithms, i just want to change 1st step in RANSAC where it randomly chooses 4 numbers, but i can't find the actual RANSAC code.
well, here's the RANSAC (... good luck with it...)