Python Forum
i want to locate an image according to the mouse position
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
i want to locate an image according to the mouse position
#1
Photo 
i want to to locate an image on screen by "Pyautogui.locateOnScreen" but i want the region depend to the mouse. for example if the mouse in position x,y so i want to locate on screen from this x,y position .
another example: this is the code for locate-onscreen in a region: region=(100,100,100,100) what i want like this region=(my mouse position, Width , height).
image to explain more :
[Image: 1IgRa.png]
this is my code
import pyautogui
import time

time.sleep(5)

while 1:
    img = pyautogui.locateOnScreen('test.png',confidence=0.8,region=(280,284,261,228))
    if img:

        pyautogui.moveTo(img)
        time.sleep(2)
        pyautogui.moveRel(-196, 5)
       # pyautogui.locateOnScreen(here where i want add the region who depends on the mouse position ) )

    else:
        
        print ('non')
Reply


Messages In This Thread
i want to locate an image according to the mouse position - by rachidel07 - Feb-07-2021, 09:23 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How do I locate setup.py in my computer, or install the file? JaneTan 1 2,656 Aug-26-2021, 08:37 AM
Last Post: snippsat
  Locate QR code on a page Pedroski55 0 2,104 Jan-21-2021, 07:11 AM
Last Post: Pedroski55
Photo Locate Noise floor level for a spectral data in Python Ranjan_Pal 1 4,146 Dec-19-2020, 10:04 AM
Last Post: Larz60+
  How to Locate an Attribute's Parent Object? calvinsomething 5 4,624 Nov-13-2020, 01:52 AM
Last Post: calvinsomething
  Read mouse position on separate between two HDMIs ATARI_LIVE 1 2,045 Sep-28-2020, 07:48 PM
Last Post: ATARI_LIVE
  mouse position biprabu 3 3,012 Sep-09-2020, 08:21 PM
Last Post: deanhystad
  Move mouse and click in particular position biprabu 3 3,508 Sep-01-2020, 08:23 PM
Last Post: deanhystad
  mouse 0.7.0 - mouse polling hate 125-1000hz penahuse 1 3,399 Dec-06-2019, 09:51 PM
Last Post: Larz60+
  trying to locate a working grpc to install MrMajorThorburn 6 7,724 May-10-2019, 01:19 PM
Last Post: MrMajorThorburn
  Locate user input in a string. MjBaca 3 4,202 Apr-23-2018, 06:55 AM
Last Post: Gribouillis

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020