[Sikuli-driver] [Question #270374]: Questions on functional capabilities of Sikuli

2015-08-14 Thread Ozgur Ibek
New question #270374 on Sikuli:
https://answers.launchpad.net/sikuli/+question/270374

Hello, 

We have been considering using this tool in our company. However before we 
decide there are a couple of questions in mind. I'd appreciate it if you could 
help me with these questions.

1- Does the tool support non-English characters, esp. Turkish?
2- How well is the tool's backward compatibility? (Opening and executing 
scripts developed in old versions) (Will be more important once the new 
versions keep coming)
3- What image recognition algorithms are supported?
4- Is it possible to extend (improve) image recognition algorithms?
5- Is there any mechanism for image recognition failure mitigation?

If you could provide detailed information about these questions that woud be 
fantastic. 

Thank you very much. 

Regards.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which 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 #270374]: Questions on functional capabilities of Sikuli

2015-08-14 Thread Eugene S
Question #270374 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/270374

Status: Open = Answered

Eugene S proposed the following answer:
Regarding all your text recognition questions

Sikuli is using Tesseract OCR which is a well known OCR engine. It has its 
limitation and in case of working in a bundle with Sikuli still requires some 
work. 
You can still work directly with Tesseract to try to improve the quality of 
recognition. You can find plenty of articles and tutorials on that topic.
Actually for all your question regarding language support and recognition 
improvement refer to Tesseract documentation directly.


Regarding image recognition
Sikuli's image matching feature is based on OpenCV's matchTemplate() (you can 
see the exact algorithm here: 
http://docs.opencv.org/modules/imgproc/doc/object_detection.html). 
If you have another efficient image matching algorithm that might be 
implemented, feel free to do so.


Not so sure what you meant by  image recognition failure mitigation

-- 
You received this question notification because you are a member of
Sikuli Drivers, which 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 #270374]: Questions on functional capabilities of Sikuli

2015-08-14 Thread Ozgur Ibek
Question #270374 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/270374

Status: Answered = Open

Ozgur Ibek is still having a problem:
Thank you for your reply.

As far as I can understand, not only I can manipulate the image
recognition code but also I can set the system to use another algorithm,
is that correct?

What I meant by image recognition failure mitigation is that when
image recognition fails for a specific image, does the system
immediately throw an error or first try something else? In an article an
example was given as to add redundancies in the test script code such
that if the image recognition fails, it is automatically rerun or
executed with another sought image.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which 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 #269719]: sikuli connect postgre database

2015-08-14 Thread Launchpad Janitor
Question #269719 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/269719

Status: Open = Expired

Launchpad Janitor expired the question:
This question was expired because it remained in the 'Open' state
without activity for the last 15 days.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which 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 #269933]: Selecting text randomly

2015-08-14 Thread Sambit Das
Question #269933 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/269933

Sambit Das gave more information on the question:
Hi Eugene

My issue is  similar to the following issue:

In MS-Word If you have any text present in a .docx file. If you select a
group of text by holding the left click of  the  mouse and after the
releasing  the left click of the mouse one menu appears  with different
options.

I need to handle a similar issue to click the various options present in
the menu.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which 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 #270331]: How to use Remote webdriver with SikULI and scripts are running on the node

2015-08-14 Thread masuo
Question #270331 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/270331

masuo posted a new comment:
In case of running sikuli on Windows machine and running browser on Linux 
machine, I would use remote desktop client software for Linux on Windows 
machine.Because sikuli can find image in a screen on own machine.
If you want to run browser on Linux machine, you should run sikuli on Linux 
machine, I think.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which 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 #270342]: How to stop sikuli instances running in background?

2015-08-14 Thread masuo
Question #270342 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/270342

masuo posted a new comment:
If you are satisfied with a following simple specification, It is
possible to achieve by addHotkey().

example 1:
Push Ctrl + F1
When Sikuli-ide is still running, it displays Still runing.
When Sikuli is finished, it displays nothing.

Script for example 1:
def DisplayStatus(event):
popup(Still running!, Workflow Status)

Env.addHotkey(Key.F1, KEY_CTRL, DisplayStatus)

example 2:
Push Ctrl + F2
When Sikuli-ide is still running, it stops Sikuli-ide.

Script for example 2:
import sys
def StopSikuli(event):
sys.exit()

Env.addHotkey(Key.F2, KEY_CTRL, StopSikuli)

-- 
You received this question notification because you are a member of
Sikuli Drivers, which 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 #270339]: if command for images

2015-08-14 Thread Mona
Question #270339 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/270339

Status: Open = Solved

Mona confirmed that the question is solved:
Thanks. the issue is with score i.e, similarity.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which 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 #270339]: if command for images

2015-08-14 Thread Mona
Question #270339 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/270339

Mona posted a new comment:
Thanks.  the issue is with score i.e, similarity.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which 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