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

Interface AssociateDescription<Desc>

  • Type Parameters:
    Desc - Feature description type.
    All Superinterfaces:
    Associate
    All Known Implementing Classes:
    AssociateNearestNeighbor, EnforceUniqueByScore.Describe, WrapAssociateGreedy, WrapAssociateSurfBasic


    public interface AssociateDescription<Desc>
    extends Associate

    Generalized interface for associating features. Finds matches for each feature in the source list to one in the destination list. There is only one match found for each member of source, but multiple matches can be found for destination. If the best match has an error which is too high then a member of source might not be matched.

    DESIGN NOTE: FastQueue is used instead of List because in the association micro benchmark it produced results that were about 20% faster consistently. Which is surprising since one would think descriptor comparisons would dominate.

    • Method Detail

      • setSource

        void setSource(FastQueue<Desc> listSrc)
        Sets the list of source features. NOTE: A reference to the input list might be saved internally until the next call to this function.
        Parameters:
        listSrc - List of features
      • setDestination

        void setDestination(FastQueue<Desc> listDst)
        Sets the list of destination features NOTE: A reference to the input list might be saved internally until the next call to this function.
        Parameters:
        listDst - List of features

DataMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.