File size: 740 Bytes
806e949
 
 
 
 
 
 
 
 
 
 
 
31a97cc
 
806e949
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>Photo to Emoji</title>
  <link rel="stylesheet" href="/static/style.css">
</head>
<body>
  <h1>Photo to Emoji Converter</h1>
  <video autoplay="true" id="videoElement"></video>
  <br />
  <!-- 🔄 Flip Camera button -->
  <button onclick="toggleCamera()">🔄 Flip Camera</button>
  <button onclick="captureAndSend()">Capture & Predict</button>
  <div id="emojiDisplay"></div>
  <div id="emotionText"></div>
  <!-- Download link -->
  <a id="downloadEmoji" download="emoji.png" style="display: none;">⬇️ Download Emoji</a>

  <script src="/static/scripts.js"></script>
</body>
</html>