forked from andree-rehnberg/interactivity-TA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (36 loc) · 1.4 KB
/
Copy pathindex.html
File metadata and controls
37 lines (36 loc) · 1.4 KB
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
36
37
<!DOCTYPE html>
<html>
<head>
<title>clmtrackr basic</title>
<meta charset="UTF-8">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel='stylesheet' href='/base.css'>
</head>
<body touch-action="none">
<style>
body {
padding: 1rem;
}
</style>
<h1>interactivity</h1>
<p>
A collection of interactivity-oriented samples for student use.
Most of these are drawn from existing examples, but simplified.
</p>
<h2>computer vision</h2>
<ol>
<li><a href="camera/">camera</a>: rendering a video stream from a camera and capturing frames</li>
<li><a href="camera-pixels">camera-pixels</a>: processing pixels from a camera stream</li>
<li><a href="camera-clmtrackr">camera-clmtrackr</a>: face tracking.
<a href="camera-clmtrackr/basic/">basic</a> - <a href="camera-clmtrackr/emotion">emotion classification</a></li>
<li><a href="camera-deeplearn">camera-deeplearn</a>: object detection</li>
</ol>
<h2>physical</h2>
<ol>
<li>ws-serial-bridge: demonstrates bi-directional serial communication with an Arduino and web app
</ol>
</body>
</html>