Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 1.09 KB

README.md

File metadata and controls

33 lines (28 loc) · 1.09 KB
SoluAI logo

SoluAI

A video surveillance web application that detects various instances of relevance through the use of a machine learning model

Usage

To run the application Rust, Cargo, Trunk, and Python are needed. The model isn't included in this repository so you'll have to get your own model and store it in server/data/model.onnx When the prerequisites have been installed the project can be used with the following commands:

Server

Install dependencies

pip install -r requirements.txt

To run the server use the following command:

python main.py

If you don't want to run the client there's an html file that can be used to test the server in server/index.html

Client

trunk --config client/Trunk.toml serve

The client can be built into client/dist with the following command:

trunk --config client/Trunk.toml build --release