We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我在我的计算机本地测试时发现: os.system("adb shell /system/bin/screencap -p /sdcard/screenshot.png") os.system("adb pull /sdcard/screenshot.png d:/screenshot.png") 在手机上存有截图但并没有导出到我的电脑D盘,猜测可能和绝对路径有关?我也不清楚。 建议将第二句修改成:os.system("adb pull /sdcard/screenshot.png ") 直接导入到代码所在文件夹,后续的读取、写入图片的路径修改成相对路径,即./screenshot.png即可。
The text was updated successfully, but these errors were encountered:
ok,已修改
Sorry, something went wrong.
这是我参照作者项目用百度OCR识别实现的,测试结果基本都在6~7秒,不知道该怎样优化速度 https://github.com/yyzhou94/MillionHeroesAssistant
阳哥,速度好快啊!
No branches or pull requests
我在我的计算机本地测试时发现:
os.system("adb shell /system/bin/screencap -p /sdcard/screenshot.png")
os.system("adb pull /sdcard/screenshot.png d:/screenshot.png")
在手机上存有截图但并没有导出到我的电脑D盘,猜测可能和绝对路径有关?我也不清楚。
建议将第二句修改成:os.system("adb pull /sdcard/screenshot.png ")
直接导入到代码所在文件夹,后续的读取、写入图片的路径修改成相对路径,即./screenshot.png即可。
The text was updated successfully, but these errors were encountered: