Jump to content

Recommended Posts

  • 2 years later...
Posted

Hi,

Its a very good implementation of the OpenCV image search and works like a charm. However how can the new OpenCV 4.1.2 be used with this?

Regards,

Jeremie

  • 9 months later...
Posted

@mylise

@BBs19

I have installed OpenCV and am trying to automate a Java x64 app on windows 10 64-bit. My script is not working.

I am simply trying to get the cursor to move to screen coordinates and click. for now.

  Quote

#AutoIt3Wrapper_UseX64=n ; In order for the x86 DLLs to work
#include "test.au3"


_OpenCV_Startup();loads opencv DLLs
_OpenCV_EnableLogging(True,True,True) ;Logs matches, errors in a log file and autoit console output.


HotKeySet( "{SPACE}", "MyFunction")
HotKeySet( "{ESC}", "CloseScript")

Local $x = 342 ; x is first value of mouse position
Local $y = 74 ; y is second value of mouse position

While 1
   sleep(10)
Wend

Func MyFunction()
MouseMove($x, $y, 2)                ; moves the mouse pointer do mouse position with speed 2
Sleep(500)                        ; wait 500 ms half of second ( delay )
MouseClick("left", $x, $y, 1, 2)    ; now click left mouse key on mouse position, 1 click with speed 2
EndFunc

Func CloseScript()
   Exit
EndFunc

Expand  

Error:include depth exceeded

Posted
  On 9/3/2020 at 2:16 AM, FredMP said:

@mylise

@BBs19

I have installed OpenCV and am trying to automate a Java x64 app on windows 10 64-bit. My script is not working.

I am simply trying to get the cursor to move to screen coordinates and click. for now.

Error:include depth exceeded

Expand  

did you try:

?

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted (edited)

Could you elaborate please? What exactly do I need to try from that post and what will that accomplish. I'm new to this. Thanks!

@mLipok

Edited by FredMP
Posted
  On 9/3/2020 at 2:16 AM, FredMP said:

I am simply trying to get the cursor to move to screen coordinates and click. for now.

Error:include depth exceeded

Expand  

you are not calling any of the OpenCV-Match_UDF functions in your script
what does the test.au3 file you included at the beginning of your script contain?
... I think if you remove it your snippet will work ....

 

image.jpeg.9f1a974c98e9f77d824b358729b089b0.jpeg Chimp

small minds discuss people average minds discuss events great minds discuss ideas.... and use AutoIt....

  • Jos locked and unlocked this topic
  • 4 weeks later...
Posted

@Chimp

Finally got around to fixing this and your suggestion worked, and my 1st script finally works, yesss!

Now, I have two questions:

1.  I need this script to be on standby the whole time the TTS app is active. So, if I press the hotkey (SPACE) the script will run moving the mouse and clicking at the coordinates and then end. But the next time I press SPACE it should do it again. My question would be is it ok to leave the script running on standby like this for hours on end or is there a more efficient way for the script to run? 

2. I need the (SPACE) hotkey to only work in TTS app. So if i go over to a browser window and type SPACE I do not want the script to activate there, only in TTS app. How do I write this into the script?

Here is the current script, I welcome any suggestions!

#AutoIt3Wrapper_UseX64=n ; In order for the x86 DLLs to work
#include "OpenCV-Match_UDF.au3"
_OpenCV_Startup();loads opencv DLLs
_OpenCV_EnableLogging(True,True,True) ;Logs matches, errors in a log file and autoit console output.

HotKeySet( "{SPACE}", "MyFunction")
HotKeySet( "{ESC}", "CloseScript")

Local $x = 342 ; x is first value of mouse position
Local $y = 74 ; y is second value of mouse position

While 1
   sleep(10)
Wend

Func MyFunction()
   #RequireAdmin
if winexists("Main@TTS") Then
    winactivate("Main@TTS")
    EndIf
MouseMove($x, $y, 2)                ; moves the mouse pointer do mouse position with speed 2
Sleep(500)                        ; wait 500 ms half of second ( delay )
MouseClick("left", $x, $y, 2, 2)    ; now click left mouse key on mouse position, 2 click with speed 2
EndFunc

Func CloseScript()
   Exit
EndFunc

 

Posted

@FredMP

I'm not very clear about your goal, however,
using the hotkey in that way will always activate the function every time you press it, even if the focus is on another window (the browser).
You can limit hotkey activation only when the active window is the "Main@TTS" window using something like:

Func MyHotKeyFunc()
    Local $HotKeyPressed = @HotKeyPressed
    HotKeySet($HotKeyPressed) ; Disable hotkey to prevent looping

    If WinActive("Main@TTS") Then ; hotkey works only if this window is active
        ; do whatever you need
    Else
        Send($HotKeyPressed) ; send key to destination
    EndIf

    HotKeySet($HotKeyPressed, "MyHotKeyFunc") ; enable hotkey again
EndFunc   ;==>MyHotKeyFunc

but in your hot function i see you force focus on "Main@TTS". therefore I assume you want the hotkey to work always, even when "Main@TTS" has no focus (?).
Or, if you want it not to work only when the browser (or another window) is active then you could use some condition like this:

Func MyHotKeyFunc()
    Local $HotKeyPressed = @HotKeyPressed
    HotKeySet($HotKeyPressed) ; Disable hotkey to prevent looping

    If Not WinActive('Browser_hwd') Then ; <-- note the Not operator to exclude the browser
        ; do whatever you need
    Else
        Send($HotKeyPressed) ; send key to destination (the browser)
    EndIf
    HotKeySet($HotKeyPressed, "MyHotKeyFunc")     ; enable hotkey again
EndFunc   ;==>MyHotKeyFunc

 

 

image.jpeg.9f1a974c98e9f77d824b358729b089b0.jpeg Chimp

small minds discuss people average minds discuss events great minds discuss ideas.... and use AutoIt....

  • 2 months later...
  • 2 years later...
Posted

Hi all,

Would it be possible that this function needs a GPU to works fine ?

It seems that on old PC or on VM without GPU, we encounter 'Failed to load DLL' error.

I'm trying to figure out by checking the open CV website but maybe one of you already knows the answer 🙂

Thx in advance 😉

  • 2 weeks later...
Posted

I'm a bit more far in my investigation.  On 2 of my 3 PC, it works fine.

On the 3rd one, the OPENDLL always return me "-1" as result.  I was wondering if it was not link to any Visual studio install (got that from other forum) but, asexcpected, this does not solve the problem.

I checked the file location, everything is okay (even if I change the dll and put it in the same locaton as the script) but DllOpen("opencv_core2413.dll") always return me -1.

Any idea ?

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...