The difference between 'confidence_threshold' and 'match_conf'? #103
-
what is the difference between 'confidence_threshold' and 'match_conf'. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
The naming can be a bit confusing, and indeed, both describe some form of confidence. You can imagine confidence as a filter for when to keep or when to throw away something. This something is where these parameters are different:
|
Beta Was this translation helpful? Give feedback.
The naming can be a bit confusing, and indeed, both describe some form of confidence. You can imagine confidence as a filter for when to keep or when to throw away something. This something is where these parameters are different:
match_conf
is passed to the feature matcher to describe which best match to keep for a given feature point. According to OpenCV's documentation, this parameter is used to check whether pairs of matches are dissimilar enough to be compared to each other:In the
stitching
package, the d…