Hi there,
I have a set of values and I know that some of them are good and some are not... but I cannot find the ratio.
I know it souns strange but let me explain. Here is the list of values
37 - 16 - good
21 - 12 - good
18 - 10 - good
19 - 8 - bad
26 - 12 - good
18 - 9 - good
23 - 13 - bad
22 - 9 - bad
27 - 12 - good
23 - 10 - good
16 - 8 - bad
29 - 12 - bad
27 - 11 - bad
22 - 10 - bad
16 - 10 - bad
22 - 9 - bad
23 - 11 - bad
33 - 20 - good
32 - 23 - good
39 - 24 - bad
34 - 21 - bad
37 - 21 - bad
(I can provide more data if needed).
The above values are the results of python - opencv - SIFT matching: total matching - inlier - resulting homography.
I couldn't find a ratio in the values. I tried the following
if value2/value1 > 0.4 then good
but it doesn't work all the times. I know that when value2 is lower then 10, usually the homography is bad (but you can see above that sometimes this doesn't work too).
Can you help me finding a good ratio for the above values? I can accept some errors but not as the above (on 22 results, only 9 are good).
Thanks,
G.