xxxxxxxxxx
19
<html>
<head>
<meta charset="UTF-8">
<title>Brightest Point</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.1/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.1/addons/p5.dom.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<p>Tracking the brightest point in video and draw trails. Try changing the smoothing amount.</p>
<p><button onclick="clearTrail()">Clear Trail</button></p>
<p>Smoothing Amount: <input type="range" id="smoothingAmount" value="50"></p>
<script src="sketch.js"></script>
</body>
</html>