-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
31 lines (30 loc) · 1019 Bytes
/
index2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<title>Hand Gesture Recognition</title>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@0.2.7/dist/tf.min.js"></script>
<script src="{{ url_for('static', filename='js/handpose.min.js') }}"></script>
<script src="{{ url_for('static', filename='js/app.js') }}"></script>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<style type="text/css">
body{
font-family: arial;
background: linear-gradient(0deg, #1e8ead ,#1e8ead );
}
</style>
<body>
<div class="container">
<h1>Indian Sign language converter </h1>
<div class="video-container">
<video id="video" autoplay muted></video>
<img src="http://127.0.0.1:5000/video_feed22" />
<canvas id="canvas"></canvas>
</div>
<div class="result-container">
<h2>Result:</h2>
<p id="result"></p>
</div>
</div>
</body>
</html>