-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (20 loc) · 958 Bytes
/
index.html
File metadata and controls
22 lines (20 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JS-Motion-Detection using javascript</title>
<link rel='stylesheet' href='style.css'>
</head>
<body>
<h1>Motion Detection by javascript</h1>
<h2>By Chulindra Rai. Follow for more <a href="https://github.com/IotchulindraRai">official GitHub project page</a>.</h2>
<video id="camStream"></video>
<canvas id="canvas"></canvas>
<canvas id="canvasFinal"></canvas>
<p>Chulindra says "I drew inspiration from Google Lead Developer Advocate for Web ML J. Mayes to create a highly
responsive motion-revealing algorithm designed for both desktop and mobile devices. In this algorithm, non-moving pixels
seamlessly transition to a neutral grey color, while any alterations manifest as heightened contrast."</p>
<script src="script.js"></script>
</body>
</html>