如何 运行 Web 应用程序中的对象检测

How to run object detection in web application

我已经完成了一个对象检测项目,我想用 Web 应用程序对其进行演示。我在 Darknet 上使用 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