Python Forum
I need a code line to spam a keyboard key | Image detection bot
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
I need a code line to spam a keyboard key | Image detection bot
#1
Hello, first of all I`m a complete noob. I followed a tutorial and made this so far. This detects a small icon 40x40 in size on my screen and it works great even if I block the icon by 50%.

"all" I need is a code line to spam a keyboard key after the bot sees the image.



Here is my code:

from pyautogui import *

import pyautogui

import time

import keyboard

import random

import win32api, win32con



while 1:

if pyautogui.locateOnScreen('ircr.png', region=(300,700,400,400) , grayscale=True, confidence=0.8) != None:

print("I can see it")

time.sleep(0.5)

else:

print("I am unable to see it")

time.sleep(0.5)
Reply


Messages In This Thread
I need a code line to spam a keyboard key | Image detection bot - by Aizou - Dec-06-2020, 03:07 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Unable to understand the meaning of the line of code. jahuja73 0 399 Jan-23-2024, 05:09 AM
Last Post: jahuja73
  New2Python: Help with Importing/Mapping Image Src to Image Code in File CluelessITguy 0 773 Nov-17-2022, 04:46 PM
Last Post: CluelessITguy
  Help Switching between keyboard/Mic input in my code Extra 1 1,155 Aug-28-2022, 10:16 PM
Last Post: deanhystad
  (OpenCV) Help to improve code for object detection and finding center of it saoko 0 1,272 May-14-2022, 05:34 PM
Last Post: saoko
  Correct the algorithm of image filter code saoko 6 2,132 May-08-2022, 05:06 PM
Last Post: saoko
  Help me with Image detection GoA_TrancE 1 2,098 Oct-18-2021, 02:03 PM
Last Post: GoA_TrancE
  code decode, string, image ... teckow 2 2,133 Aug-20-2021, 07:02 PM
Last Post: teckow
  how long can a line of code be? Skaperen 2 2,288 Jun-09-2021, 06:31 PM
Last Post: Skaperen
  [split] Kera Getting errors when following code example Image classification from scratch hobbyist 3 4,720 Apr-13-2021, 01:26 PM
Last Post: amirian
  saving only one line of a figure as an image (python matplotlib) nitrochloric 0 2,094 Nov-23-2020, 01:41 PM
Last Post: nitrochloric

Forum Jump:

User Panel Messages

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