An ImageFinder should provide an abstraction layer to perform image matching

ImageFinderInterface

interface ImageFinderInterface {
    findMatch<PROVIDER_DATA_TYPE>(matchRequest): Promise<MatchResult<Region>>;
    findMatches<PROVIDER_DATA_TYPE>(matchRequest): Promise<MatchResult<Region>[]>;
}

Methods

Generated using TypeDoc