Documentation of 'boofcv.abst.feature.associate.Associate' Java class
Associate
boofcv.abst.feature.associate

Interface Associate

    • Method Detail

      • associate

        void associate()
        Finds the best match for each item in the source list with an item in the destination list.
      • getMatches

        FastQueue<AssociatedIndex> getMatches()
        List of associated features. Indexes refer to the index inside the input lists.
        Returns:
        List of associated features.
      • getUnassociatedSource

        GrowQueue_I32 getUnassociatedSource()
        Indexes of features in the source set which are not associated. WARNING: In some implementations the unassociated list is recomputed each time this function is invoked. In other implementations it was found virtually for free while the matches are found.
        Returns:
        List of unassociated source features by index.
      • getUnassociatedDestination

        GrowQueue_I32 getUnassociatedDestination()
        Indexes of features in the destination set which are not associated. WARNING: In some implementations the unassociated list is recomputed each time this function is invoked. In other implementations it was found virtually for free while the matches are found.
        Returns:
        List of unassociated destination features by index.
      • setThreshold

        void setThreshold(double score)
        Associations are only considered if their score is less than or equal to the specified threshold. To remove any threshold test set this value to Double.MAX_VALUE
        Parameters:
        score - The threshold.
      • getScoreType

        MatchScoreType getScoreType()
        Specifies the type of score which is returned.
        Returns:
        Type of association score.
      • uniqueSource

        boolean uniqueSource()
        If at most one match is returned for each source feature.
        Returns:
        true for unique source association
      • uniqueDestination

        boolean uniqueDestination()
        If at most one match is returned for each destination feature.
        Returns:
        true for unique destination association

DataMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.