An ImageFinder should provide an abstraction layer to perform image matching

Interface

ImageFinderInterface

Hierarchy

  • ImageFinderInterface

Methods

  • findMatch should provide an abstraction to search for an image needle in another image haystack

    Returns

    A MatchResult holding the match probability and location

    Memberof

    ImageFinderInterface

    Type Parameters

    Type Parameters

    • PROVIDER_DATA_TYPE

    Parameters

    • matchRequest: MatchRequest<Image, PROVIDER_DATA_TYPE>

      A MatchRequest containing needed matching data

    Returns Promise<MatchResult>

  • findMatches should provide an abstraction to search for an image needle in another image haystack

    Returns

    A list of MatchResults holding the match probability and location

    Memberof

    ImageFinderInterface

    Type Parameters

    Type Parameters

    • PROVIDER_DATA_TYPE

    Parameters

    • matchRequest: MatchRequest<Image, PROVIDER_DATA_TYPE>

      A matchrequest containing needed matching data

    Returns Promise<MatchResult[]>