Flask-OpenCV-Streamer
Flask-OpenCV-Streamer copied to clipboard
The web page
Where can i find the index.html ,wanted to make so ui changes for my project
@venkatkrishna07, in the same directory as your code you will have to create a folder "templates". Inside the created folder create a file and name it "index.html". Paste the following code inside the html file:
<html>
<head>
<title>Video Streaming Demonstration</title>
</head>
<body>
<h1>Video Streaming Demonstration</h1>
<img src="{{ url_for('video_feed') }}">
</body>
</html>
You are ready to go! :)