Default files for webcam
This commit is contained in:
parent
d437cde6da
commit
a3c41c785d
1 changed files with 9 additions and 8 deletions
|
@ -1,20 +1,21 @@
|
|||
import objectID from 'bson-objectid';
|
||||
import * as ActionTypes from '../../../constants';
|
||||
|
||||
const defaultSketch = `function setup() {
|
||||
createCanvas(400, 400);
|
||||
}
|
||||
const defaultSketch = `// liveUpdate
|
||||
|
||||
function draw() {
|
||||
background(220);
|
||||
function drawMask(detection) {
|
||||
stroke('red');
|
||||
strokeWeight(2);
|
||||
rect(detection.box.x, detection.box.y, detection.box.width, detection.box.height)
|
||||
}`;
|
||||
|
||||
const defaultHTML =
|
||||
`<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html>
|
||||
<head>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/p5.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/addons/p5.sound.min.js"></script>
|
||||
<script src="/assets/p5.js"></script>
|
||||
<script src="/assets/ml5.js"></script>
|
||||
<script src="/assets/webcam.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="style.css">
|
||||
<meta charset="utf-8" />
|
||||
|
||||
|
|
Loading…
Reference in a new issue