Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to build yolov3 Target Detection system with Flask in Python

2025-02-25 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article will explain in detail how to build a yolov3 target detection system in Flask in Python. The editor thinks it is very practical, so I share it with you as a reference. I hope you can get something after reading this article.

The backend code from flask import Flask, request, jsonifyfrom PIL import Imageimport numpy as npimport base64import ioimport osfrom backend.tf_inference import load_model, inferenceos.environ ['CUDA_VISIBLE_DEVICES'] =' 0'sess, detection_graph = load_model () app = Flask (_ _ name__) @ app.route ('/ api/', methods= ["POST"]) def main_interface (): response = request.get_json () data_str = response ['image'] point = data_str.find (' ') base64_str = data_ strpoint:] # remove unused part like this: _ "data:image/jpeg Base64, "image = base64.b64decode (base64_str) img = Image.open (io.BytesIO (image)) if (IMG. Modewords): img = img.convert (" RGB ") # convert to numpy array. Img_arr = np.array (img) # do object detection in inference function. Results = inference (sess, detection_graph, img_arr, conf_thresh=0.7) print (results) return jsonify (results) @ app.after_requestdef add_headers (response): response.headers.add ('Access-Control-Allow-Origin',' *') response.headers.add ('Access-Control-Allow-Headers',' Content-Type,Authorization') return responseif _ _ name__ = ='_ main__': app.run (debug=True Host='0.0.0.0') display section

Python-m http.server

Python app.py

Front-end display part

This is the end of this article on "how to build a yolov3 target detection system in Flask in Python". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, please share it out for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report