Skip to content

Rassena/Tap_titan_2_bot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Android Screen Buffer

Python package for streaming Android device's screen frames. This utility can be used to capture android screen frames in real time and use with 3rd party libs like opencv. Might be usefull in case you'd like to make processing or use screen frames in your python code (e.g to create reinforcement learning setups for android games).

How to install:

  • First install and run minicap (thats really easy).
  • Then pip install asb

How to use:

from asb import AndroidScreenBuffer

buff = AndroidScreenBuffer()
buff.run()

img = buff.get_last_frame()

if img is not None:
    # Use image as you would like
    # e.g cv2.imshow('capture', img)

About

Python utility to capture android screen frames in real time and use with 3rd party libs like opencv.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 69.6%
  • Dockerfile 27.1%
  • Shell 3.3%