Re: [Sikuli-driver] [Question #692649]: Image Matching

2020-08-30 Thread Jeff_Vallis
Question #692649 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/692649

Status: Answered => Solved

Jeff_Vallis confirmed that the question is solved:
Thanks RaiMan, that solved my question.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #692649]: Image Matching

2020-08-29 Thread RaiMan
Question #692649 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/692649

Status: Open => Answered

RaiMan proposed the following answer:
--- exact match:
Pattern(...).exact() 
which is the same as 
Pattern(...).similar(0.99)

--- match score
if someRegion.exists(...):
score = someRegion.getlastMatch().getScore()

or
match = someRegion.exists(...)
if match:
 score = match.getScore()

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


[Sikuli-driver] [Question #692649]: Image Matching

2020-08-29 Thread Jeff_Vallis
New question #692649 on Sikuli:
https://answers.launchpad.net/sikuli/+question/692649

2.0.4-2020-03-14_08:01/Mac10.15.6/Java13(64)13.0.1+9

Is there anyway to find out what the matching level is from a exists or find 
without looping through from matching 0.70 to 0.99

also  is v_Matching 1.00 the correct syntax for exact match
v_Image = Pattern(v_Image).similar(v_Matching)


-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp