我已经使用android studio和笔记本电脑上的python脚本构建了一个用于人脸检测的应用程序,但现在我想通过点击我的android应用程序上的按钮来运行该python程序
您正在寻找一个API。
您可以通过几种方式实现这一点,但我建议您制作一个HTTP API。
检验烧瓶https://flask.palletsprojects.com/en/1.1.x/quickstart/
@app.route('/face-detection')
def face_detection():
...
# call your script functionality
...
return response
你的应用程序应该制作类似的东西
按钮。单击->HTTP请求到您的笔记本电脑:api_port/人脸检测
祝你今天愉快!