Version:
interface

VisionFinderInterface

A VisionFinder should provide an abstraction layer to perform natural language
image matching against screen content.

typescript
interface VisionFinderInterface

Methods

findMatch

findMatch(matchRequest: MatchRequest<object, PROVIDER_DATA_TYPE>): Promise<MatchResult<Region>>

findMatch should provide an abstraction to search for a natural language
description in a screen image.

Parameters

matchRequestMatchRequest<object, PROVIDER_DATA_TYPE>A containing needed matching data

Returns

Promise<MatchResult<Region>>

findMatches

findMatches(matchRequest: MatchRequest<object, PROVIDER_DATA_TYPE>): Promise<MatchResult<Region>[]>

findMatches should provide an abstraction to search for multiple matches of
a natural language description in a screen image.

Parameters

matchRequestMatchRequest<object, PROVIDER_DATA_TYPE>A containing needed matching data

Returns

Promise<MatchResult<Region>[]>

Was this page helpful?