YOLOv8 Flask整合问题

YOLOv8 Flask整合问题

yolov8 + flask 后代码没有进行推理问题。

Bug model.predict()+pyinstaller+HTTPServer/flask: not executing

yolov8是异步线程调用了,flask打包exe后会应该异步问题,model.predict()不会进行返回,导致没有看着没有执行而已。

Behind the scenes, ultralytics (or one of its dependencies) is using multiprocessing, and if you want to use multiprocessing in a PyInstaller-frozen application, you need to call multiprocessing.freeze_support before making any use of multiprocessing functionality.

In the case of your non-flask example:

python 复制代码
from http.server import BaseHTTPRequestHandler, HTTPServer
import json
import cv2
import multiprocessing  # For multiprocessing.freeze_support()
import numpy as np
import base64
import time
from ultralytics import YOLO

class MyServer(BaseHTTPRequestHandler):
    def do_POST(self):
        self.send_response(200)
        self.send_header("Content-type", "text/html")
        self.end_headers()

        content_length = int(self.headers['Content-Length'])
        post_data = json.loads(self.rfile.read(content_length))
        img = post_data['img']

        nparr = np.frombuffer(base64.b64decode(img), np.uint8)
        img_np = cv2.imdecode(nparr, cv2.IMREAD_COLOR)
        
        print('starting..')
        model = YOLO('best.pt')
        print('model loaded')
        results = model.predict(source=img_np, show=False, save=False, save_conf=False, show_conf=False, save_txt=False)
        print('model predicted')

        self.wfile.write(bytes(f"ok", "utf-8"))

if __name__ == "__main__":
    multiprocessing.freeze_support()  # <--- Added
    print('starting server..')    
    webServer = HTTPServer(('localhost', 5000), MyServer)
    try:
        webServer.serve_forever()
    except KeyboardInterrupt:
        pass
    finally:
        print('aborted')
        time.sleep(2)
    webServer.server_close()

解决!!!

相关推荐
fieldsss30 分钟前
JAVA基础语法 Day11
java·开发语言·python
大今野44 分钟前
python三局两胜游戏
前端·python·游戏
sz66cm1 小时前
Python基础 -- enumerate()的作用与用法
linux·开发语言·python
AI原吾1 小时前
探索未来:hbmqtt,Python中的AI驱动MQTT
开发语言·人工智能·python·ai·hbmqtt
YancyYue1 小时前
Python安装流程(Windows + MAC)
运维·windows·python·macos
ymchuangke2 小时前
树莓派5:换源(针对Debian12)+安装包管理器Archiconda(图文教程+详细+对初学者超级友好)
python·深度学习·算法·树莓派5
gabadout2 小时前
Python案例--水仙花数的探索之旅
开发语言·python
音沐mu2 小时前
【YOLO目标检测行人与车数据集】共5607张、已标注txt格式、有训练好的yolov5的模型
人工智能·yolo·目标检测
音符犹如代码2 小时前
第十四届蓝桥杯真题Python c组F.棋盘(持续更新)
python·蓝桥杯
IT北辰2 小时前
Python 读取与处理出入库 Excel 数据实战案例(HTML 网页展示)
python·html·excel