snipplets.dev/projects/Python/OpenCV_to_HTML/templates/index.html

30 lines
575 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>OpenCV Stream video</title>
<style type="text/css">
body {
background-color: #2a2a3a;
color: #efefef;
font-family: Ubuntu;
}
div.video {
text-align: center;
}
img.video-frame {
border-radius: 8px;
}
</style>
</head>
<body>
<div class="video">
<h1>OpenCV Stream video to web browser/HTML page</h1>
<img class="video-frame rounded" src="{{ url_for('video_feed') }}">
</div>
</body>
</html>