Re: [Sikuli-driver] [Question #699312]: [Enhancement] Find All possible matches from an list of input images

2023-09-21 Thread Nikki Nik
Question #699312 on SikuliX changed:
https://answers.launchpad.net/sikuli/+question/699312

Nikki Nik posted a new comment:
thank you so much guys for sharing this amazing function i am looking
this type of solution from a long ago i have many images on
https://cocbases.net/th14-war-base/ all these images are same and i got
confused when i dont find the one i am looking for but now you guys make
it easy for me so from now i dont have to spend a lot of time.

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

___
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 #699312]: [Enhancement] Find All possible matches from an list of input images

2021-11-02 Thread Chetan
Question #699312 on SikuliX changed:
https://answers.launchpad.net/sikuli/+question/699312

Status: Answered => Solved

Chetan 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 SikuliX.

___
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 #699312]: [Enhancement] Find All possible matches from an list of input images

2021-11-02 Thread Chetan
Question #699312 on SikuliX changed:
https://answers.launchpad.net/sikuli/+question/699312

Chetan posted a new comment:
thanks Raiman for your inputs. yes we are already using it as a def function.
can you please share us the expected build and if possible link to track this

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

___
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 #699312]: [Enhancement] Find All possible matches from an list of input images

2021-11-02 Thread RaiMan
Question #699312 on SikuliX changed:
https://answers.launchpad.net/sikuli/+question/699312

Status: Open => Answered

RaiMan proposed the following answer:
I understand your request.

But if you pack such an implementation into a function (def) and put it
into your global module, then you are there.

findAll principally is the same as find, but in case returns all matches
with an appropriate score instead of only that with the highest score.

An enhancement IMHO  for your situation would be to internally run the
find ops for each target in parallel (as for findAny) instead of
sequentially, which takes longer in average and uses a new shot for
every sequential findAll (your workaround).

So I accept your request as an enhancement for findAny, so that for each
given target a list of all found matches (as with findAllList) is
returned.

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

___
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 #699312]: [Enhancement] Find All possible matches from an list of input images

2021-11-02 Thread Chetan
New question #699312 on SikuliX:
https://answers.launchpad.net/sikuli/+question/699312

problem:
currently we use findbest to find the best match from a list of input images. 
however sometimes we need to find all matches as the best match image is not 
the image we need. for this there is no method where we pass a list of images 
to findALL and it returns all the matches from each of the input image

alternatively we use loop in findalllist where we feed it with one image at a 
time

  for imgall in imagelistwithMatchpercent:
closestImagesfindAll=[]
closestImagesfindAll=regiontoSearch.findAllList(imgall)


enhancement
it would be helpful we we can pass all the images to findAllList in one go



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

___
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