Class FeaturesMatchingOptions

    • Constructor Detail

      • FeaturesMatchingOptions

        public FeaturesMatchingOptions()
    • Method Detail

      • withDetectorName

        public FeaturesMatchingOptions withDetectorName​(FeatureDetector name)
        Sets the detector name for features matching algorithm. Some of these detectors (FAST, AGAST, GFTT, FAST, SIFT and MSER) are not available in the default OpenCV installation and have to be enabled manually before library compilation. The default detector name is 'ORB'.
        Parameters:
        name - the detector name for features matching.
        Returns:
        self instance for chaining.
      • withMatchFunc

        public FeaturesMatchingOptions withMatchFunc​(MatchingFunction name)
        Sets the name of the matching function. The default one is 'BruteForce'.
        Parameters:
        name - the name of the matching function.
        Returns:
        self instance for chaining.
      • withGoodMatchesFactor

        public FeaturesMatchingOptions withGoodMatchesFactor​(int factor)
        Sets the maximum count of "good" matches (e. g. with minimal distances).
        Parameters:
        factor - the "good" matches factor
        Returns:
        self instance for chaining.