← Back to team overview

sikuli-driver team mailing list archive

[Question #279508]: Multi Part Image Pattern Matching

 

New question #279508 on Sikuli:
https://answers.launchpad.net/sikuli/+question/279508

img0=Pattern('%d.png' % 0).similar(.70)  #0
img1=Pattern('%d.png' % 1).similar(.70)  #1
img2=Pattern('%d.png' % 2).similar(.70)  #2

img9=Pattern('%d.png' % 9).similar(.70)  #9

then use "combine images" to find all:
matches = mineArea.findAll(Pattern('%d.png' % i).similar(.70))
while matches.hasNext():

what kind of pattern can I use?


I need to be able to combine any digit to create own number with more than 3 digits to do matching on screen assuming spacing between digits are close to be match image.

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