Best Flask open-source libraries and packages

Deploy TensorFlow 2 Object Detection API models with Python Flask

Easily deliver models you create with TensorFlow 2 Object Detection API to people.
Updated 10 months ago

Deploy TensorFlow 2 Object Detection API models with Python-Flask

This website allows you to deploy the models you created with TensorFlow 2 Object Detection API on the server and make them available to other people. Thus, the models you write will not stay in the air and people will be able to use them. The main purpose of artificial intelligence is to solve problems, so you will be able to solve problems in daily life.

How the application works ?

The operation of the application is given in the diagram below, the image taken from the client, ie people, reaches the server, and these images are processed here, then the final state of the image array is visualized on the front with html.

asd

Steps to run the web application on the server

First of all, install the python packages in the requirements.txt to the server (you can install these packages with the command below).

sudo su
pip3 install -r requirements.txt

After installing the Python packages, we need to make the necessary tensorflow package configurations (just run the commands below).

cd tf
./bin/protoc object_detection/protos/*.proto --python_out=.
export PYTHONPATH=$PYTHONPATH:`pwd`/:`pwd`/slim
cd ..

After installing the necessary python packages and tensorflow configuration, we must make the https and 443 ports public on the server (Run the following commands in order).

sudo systemctl status ufw 
sudo ufw enable
sudo ufw allow https
sudo ufw allow 443

After completing these processes, you can now access the website with public ip, but we still have some shortcomings, we must create an SSL certificate and include it in python flask, otherwise your browser will not trust the website and will not open your web cam (run the following commands).

pip3 install pyopenssl
openssl req -x509 -newkey rsa:4096 -nodes -out cert.pem -keyout key.pem -days 365

It will create the necessary certificates in the folder and I have included these certificates in the code for you, you don't need to do anything.

socketio.run(app, host="0.0.0.0", port=443, ssl_context=('cert.pem', 'key.pem'))

Everything is ok now, your python site will be up with the following command and you can access the site by going to https://xxxx. I will go to https://168.62.57.147, you can edit the url part according to you.

sudo python3 main.py

Information : In the current application, we will use the model named "ssd_mobilenet_v2_320x320_coco17_tpu-8" and we will use ready-made "coco" weights and classes, if you wish, you can use this web application with your own model and your own classes.

Test image and video

v

Screenshot_20210626-101819_Chrome