← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #692649]: Image Matching

 

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.