I am planning to create a ml model the recognizes some stuff in real time video, it will be a deep learning model, What I would like to know is how could I apply that model into my web app and what should I use? I want to use the cam of the computer and the model to recognize some patterns.
I did not made anything yet but I am plannig the project. any ideas is appreciated. I know streamlit and gradio, but i would like to use node, any framework like react or django, flask etc. any idea is appreciated. thanks
The answers will vary depending on the details of the project. For example if you want build basic project, you can use basic html, css and javascript for Frontend but if you need state management between the pages, you can use React.
You can use FastAPI or Flask for accessing model prediction and send to Frontend, you can search like this "Deploy Machine Learning Model using Flask" on the Internet. If you want to access webcam you can use VideoCapture in OpenCV.