File size: 1,026 Bytes
806e949 7e5a3e2 d64770b 806e949 7e5a3e2 0148a7d 7e5a3e2 b634a11 bd823e4 7e5a3e2 d64770b 806e949 7e5a3e2 |
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 32 33 34 35 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>FaceFeel: Emotion Mirror</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<header>
<h1>FaceFeel</h1>
<p>Your Face, Your Feelings!</p>
</header>
<section class="camera-section">
<video autoplay="true" id="videoElement"></video>
<div class="btn-group">
<button class="btn" onclick="toggleCamera()">🔄 Flip Camera</button>
<button class="btn primary" onclick="captureAndSend()">📸 Capture & Predict</button>
</div>
</section>
<section class="result-section">
<div id="capturedImagePreview">
<h3>Captured Image</h3>
<img id="snapshotImage" alt="Captured snapshot"/>
</div>
<div id="emojiDisplay"></div>
<div id="emotionText"></div>
<a id="downloadEmoji" download="emoji.png">⬇️ Download Emoji</a>
</section>
<script src="/static/scripts.js"></script>
</body>
</html> |