freeRAM func

This commit is contained in:
2023-11-12 22:45:23 +03:00
parent 498da7474c
commit d40e4c660b
7 changed files with 233 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<!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" src="{{ url_for('video_feed') }}">
</div>
</body>
</html>