You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A CardLibrary basically is a json structure with an array of sets, with an array of cards, with an array of properties.
A Match includes a specific card from the CardLibrary, as well as a percentage of confidence(undefined if the method doesn't include such a thing).
In the application, all the ICardMatcher's will be arranged in order of usefulness. For example, it makes much more sense to have a GuidCardMatcher come before a FuzzyTextSearchCardMatcher.
If a GetMatches returns 1 item, with 100% confidence, it will stop and return that result. If there are previous results from other matchers, it will also include those, ordered by confidence.
The text was updated successfully, but these errors were encountered:
There are multiple ways we could search through the card image titles to compare. There needs to be multiple kinds.
There should be a generic interface for handling this searching.
A
CardLibrary
basically is a json structure with an array of sets, with an array of cards, with an array of properties.A
Match
includes a specific card from theCardLibrary
, as well as a percentage of confidence(undefined
if the method doesn't include such a thing).In the application, all the ICardMatcher's will be arranged in order of usefulness. For example, it makes much more sense to have a GuidCardMatcher come before a FuzzyTextSearchCardMatcher.
If a GetMatches returns 1 item, with 100% confidence, it will stop and return that result. If there are previous results from other matchers, it will also include those, ordered by confidence.
The text was updated successfully, but these errors were encountered: