Version:
interface
TextFinderInterface
A TextFinder should provide an abstraction layer to perform text searches
typescript
interface TextFinderInterfaceMethods
findMatch
findMatch(matchRequest: MatchRequest<TextQuery, PROVIDER_DATA_TYPE>): Promise<MatchResult<Region>>findMatch should provide an abstraction to search for an image needle
in another image haystack
Parameters
Returns
Promise<MatchResult<Region>>findMatches
findMatches(matchRequest: MatchRequest<TextQuery, PROVIDER_DATA_TYPE>): Promise<MatchResult<Region>[]>findMatches should provide an abstraction to search for an image needle
in another image haystack
Parameters
Returns
Promise<MatchResult<Region>[]>Was this page helpful?