Hi,
I have a simple Face Detection application developed using Flask and OpenCV, and is working fine on my local machine (laptop) because it is using my laptop's camera for capturing images.
When I deployed this app in Heroku server, the application was built and deployed successfully but it fails to identify the client side camera, when invoked using the browser, though I changed the port to 0.0.0.0.
Seems it is trying to invoke the Heroku Server's camera instead of identifying my laptop's camera.
Application URL: https://faceeyesdetector.herokuapp.com/ Github URL: https://github.com/socratesk/FaceEyeDetector
Please let me know what configuration should I change so that it works on my local machine, while deployed on to Heroku server.
Thanks!