This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
"A", | |
"B", | |
"C", | |
"D", | |
"E", | |
"F", | |
"G", | |
"H", | |
"I", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# vehicle_detector.py | |
# https://pythonprogramming.net/introduction-use-tensorflow-object-detection-api-tutorial/ | |
# # Object Detection Demo | |
# License: Apache License 2.0 (https://github.com/tensorflow/models/blob/master/LICENSE) | |
# source: https://github.com/tensorflow/models | |
# https://gpuopen.com/rocm-tensorflow-1-8-release/ | |
# py -m pip install Cython contextlib2 pillow lxml jupyter matplotlib | |
# http://www.mingw.org/wiki/Getting_Started |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Done by Frannecklp | |
import cv2 | |
import numpy as np | |
import win32gui, win32ui, win32con, win32api | |
def grab_screen(region=None): | |
hwin = win32gui.GetDesktopWindow() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# keys.py | |
# Code by Daniel Kukiela (https://twitter.com/daniel_kukiela) | |
import ctypes | |
from threading import Thread | |
from time import time, sleep | |
from queue import Queue | |
# main keys class |
OlderNewer