:
Size: a a a
Ra
Ra
#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.
$src = @ScriptDir & '\Match\patern4.png'
;$sCoords = False
Global $sCoords[4] = [140, 83, 427, 363]
While 1
$Matches = _MatchPicture($src, 0.55, $sCoords, 1, 1)
If $Matches Then ConsoleWrite('$Matches=' & $Matches & @CRLF)
Sleep(1000)
WEnd
Ra
Ra
Ra
:
Ra
:
JW