Interface: MatchingOptions<>
@appium/opencv.MatchingOptions
Table of contents
Properties
Properties
detectorName
• detectorName: string
['ORB'] One of possible OpenCV feature detector names
from keys of the AVAILABLE_DETECTORS
object.
Some of these methods (FAST, AGAST, GFTT, FAST, SIFT and MSER) are not available
in the default OpenCV installation and have to be enabled manually before
library compilation.
Defined in
packages/opencv/lib/index.js:194
goodMatchesFactor
• goodMatchesFactor: null
| number
| Function
The maximum count of "good" matches (e. g. with minimal distances) or a function, which accepts 3 arguments: the current distance, minimal distance, maximum distance and returns true or false to include or exclude the match.
Defined in
packages/opencv/lib/index.js:201
matchFunc
• matchFunc: string
['BruteForce'] The name of the matching function.
Should be one of the keys of the AVAILABLE_MATCHING_FUNCTIONS
object.
Defined in
packages/opencv/lib/index.js:199
visualize
• visualize: null
| boolean
[false] Whether to return the resulting visalization as an image (useful for debugging purposes)