我已经完成了一个对象检测项目,我想用一个web应用程序进行演示。我在暗网上使用YOLOv3进行训练。我打算得到我从训练中得到的重量,并在网络应用程序中使用它。我决定允许用户上传一张图像,然后通过Python脚本获取该图像,该脚本将加载我训练过的权重并进行检测。我决定将PHP用于服务器端,并首先在本地主机上测试所有内容。
我对网络应用程序完全陌生,我不知道我是否决定了正确的
这样做是可能的。。以下是帮助您开始的头条新闻
>First create the image upload form
>PHP script to first move the image to a folder accessible to .py for processing
then execute the .py script
>Save the result of the processing to a log (.json works best with php)
>Decode the .json with PHP
>if you need to do calculations with PHP, do so
>Lastly give the user the results they expect to get