如何使用python捕获android屏幕

如何使用python捕获android屏幕,android,python,Android,Python,我想使用python(使用opencv或其他库)对android屏幕进行一些图像处理。 我是一名python程序员,因此不想仅仅为了这个特殊的小任务而使用android studio或学习其他图像处理工具 如何使用python over usb/ip/任何其他方式将手机连接到电脑,以将其屏幕流式传输到电脑 如果可能的话,我也不介意用python编写代码并在android上运行。试试这个 但你需要使用这个基本上是IP摄像头的应用程序 试试这个 但你需要使用这个基本上是IP摄像头的应用程序 #

我想使用python(使用opencv或其他库)对android屏幕进行一些图像处理。
我是一名python程序员,因此不想仅仅为了这个特殊的小任务而使用android studio或学习其他图像处理工具

如何使用python over usb/ip/任何其他方式将手机连接到电脑,以将其屏幕流式传输到电脑

如果可能的话,我也不介意用python编写代码并在android上运行。

试试这个 但你需要使用这个基本上是IP摄像头的应用程序

试试这个 但你需要使用这个基本上是IP摄像头的应用程序

# Stream Video with OpenCV from an Android running IP Webcam (https://play.google.com/store/apps/details?id=com.pas.webcam)
# Code Adopted from http://stackoverflow.com/questions/21702477/how-to-parse-mjpeg-http-stream-from-ip-camera

import cv2
import urllib2
import numpy as np
import sys

host = "192.168.0.220:8080"
if len(sys.argv)>1:
    host = sys.argv[1]

hoststr = 'http://' + host + '/video'
print 'Streaming ' + hoststr

stream=urllib2.urlopen(hoststr)

bytes=''
while True:
    bytes+=stream.read(1024)
    a = bytes.find('\xff\xd8')
    b = bytes.find('\xff\xd9')
    if a!=-1 and b!=-1:
        jpg = bytes[a:b+2]
        bytes= bytes[b+2:]
        i = cv2.imdecode(np.fromstring(jpg, dtype=np.uint8),cv2.CV_LOAD_IMAGE_COLOR)
        cv2.imshow(hoststr,i)
        if cv2.waitKey(1) ==27:
            exit(0)