opencv using django [closed]
I have created a script in python using opencv library which capture the faces, create the training data and then detect the faces. Everything is working well. But now I want to integrate it in my web application, I got a python framework called django which help to create web application using python. But I am not able to integrate this face capture / detection script in this framework. Is any one here who can help me to integrate face detection in the web application using django framework or separately.
sorry to say so, but imho this is off-topic
also, maybe you don't even need a server for face-detection. in 2019 this can be done entirely from within the browser, using js, e.g. like here
also, be aware, that your current (i'm guessing) VideoCapture based script won't ever work on a server in the cloud, you'd have to serve html, and retrieve images from there.