blob: 4e3a4166c8382f526f6881281e4c941d47be3827 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Webcam with Dithering</title>
</head>
<body>
<button id="toggleCamera">Turn On Camera</button>
<button id="captureFrame" disabled>Capture Frame</button>
<video id="webcam" autoplay playsinline style="display:none;"></video>
<canvas id="ditheredOutput"></canvas>
<script src="video.js"></script>
</body>
</html>
|