├── AverageBrightness ├── index.html ├── sketch.js └── style.css ├── BackgroundSubtraction ├── index.html ├── sketch.js └── style.css ├── BrightestPoint ├── index.html ├── sketch.js └── style.css ├── ColorDetection ├── index.html ├── sketch.js └── style.css ├── ContourDetection-opencvjs ├── cv.data ├── cv.js ├── index.html ├── sketch.js └── style.css ├── ContourDetection-trackingjs ├── index.html ├── sketch.js └── style.css ├── EdgeDetection ├── index.html ├── sketch.js └── style.css ├── Empty ├── index.html ├── sketch.js └── style.css ├── FaceDetection ├── eniac.jpg ├── index.html ├── sketch.js └── style.css ├── FaceTracking ├── index.html ├── sketch.js └── style.css ├── FrameDifference ├── index.html ├── sketch.js └── style.css ├── MarkerTracking ├── index.html ├── markers.png ├── sketch.js └── style.css ├── MotionHistory ├── index.html ├── sketch.js └── style.css ├── ObjectRecognition ├── clarifai.js ├── index.html ├── sketch.js └── style.css ├── OpticalFlow ├── Graph.js ├── flow.js ├── index.html ├── sketch.js └── style.css ├── PointTracking ├── index.html ├── sketch.js └── style.css ├── Thresholding ├── index.html ├── sketch.js └── style.css ├── index.html ├── license.md └── readme.md /AverageBrightness/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/AverageBrightness/index.html -------------------------------------------------------------------------------- /AverageBrightness/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/AverageBrightness/sketch.js -------------------------------------------------------------------------------- /AverageBrightness/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/AverageBrightness/style.css -------------------------------------------------------------------------------- /BackgroundSubtraction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/BackgroundSubtraction/index.html -------------------------------------------------------------------------------- /BackgroundSubtraction/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/BackgroundSubtraction/sketch.js -------------------------------------------------------------------------------- /BackgroundSubtraction/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: sans-serif; 3 | } -------------------------------------------------------------------------------- /BrightestPoint/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/BrightestPoint/index.html -------------------------------------------------------------------------------- /BrightestPoint/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/BrightestPoint/sketch.js -------------------------------------------------------------------------------- /BrightestPoint/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: sans-serif; 3 | } -------------------------------------------------------------------------------- /ColorDetection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/ColorDetection/index.html -------------------------------------------------------------------------------- /ColorDetection/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/ColorDetection/sketch.js -------------------------------------------------------------------------------- /ColorDetection/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/ColorDetection/style.css -------------------------------------------------------------------------------- /ContourDetection-opencvjs/cv.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/ContourDetection-opencvjs/cv.data -------------------------------------------------------------------------------- /ContourDetection-opencvjs/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/ContourDetection-opencvjs/cv.js -------------------------------------------------------------------------------- /ContourDetection-opencvjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/ContourDetection-opencvjs/index.html -------------------------------------------------------------------------------- /ContourDetection-opencvjs/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/ContourDetection-opencvjs/sketch.js -------------------------------------------------------------------------------- /ContourDetection-opencvjs/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: sans-serif; 3 | } -------------------------------------------------------------------------------- /ContourDetection-trackingjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/ContourDetection-trackingjs/index.html -------------------------------------------------------------------------------- /ContourDetection-trackingjs/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/ContourDetection-trackingjs/sketch.js -------------------------------------------------------------------------------- /ContourDetection-trackingjs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/ContourDetection-trackingjs/style.css -------------------------------------------------------------------------------- /EdgeDetection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/EdgeDetection/index.html -------------------------------------------------------------------------------- /EdgeDetection/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/EdgeDetection/sketch.js -------------------------------------------------------------------------------- /EdgeDetection/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: sans-serif; 3 | } -------------------------------------------------------------------------------- /Empty/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/Empty/index.html -------------------------------------------------------------------------------- /Empty/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/Empty/sketch.js -------------------------------------------------------------------------------- /Empty/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: sans-serif; 3 | } -------------------------------------------------------------------------------- /FaceDetection/eniac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/FaceDetection/eniac.jpg -------------------------------------------------------------------------------- /FaceDetection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/FaceDetection/index.html -------------------------------------------------------------------------------- /FaceDetection/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/FaceDetection/sketch.js -------------------------------------------------------------------------------- /FaceDetection/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: sans-serif; 3 | } -------------------------------------------------------------------------------- /FaceTracking/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/FaceTracking/index.html -------------------------------------------------------------------------------- /FaceTracking/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/FaceTracking/sketch.js -------------------------------------------------------------------------------- /FaceTracking/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: sans-serif; 3 | } -------------------------------------------------------------------------------- /FrameDifference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/FrameDifference/index.html -------------------------------------------------------------------------------- /FrameDifference/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/FrameDifference/sketch.js -------------------------------------------------------------------------------- /FrameDifference/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: sans-serif; 3 | } -------------------------------------------------------------------------------- /MarkerTracking/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/MarkerTracking/index.html -------------------------------------------------------------------------------- /MarkerTracking/markers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/MarkerTracking/markers.png -------------------------------------------------------------------------------- /MarkerTracking/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/MarkerTracking/sketch.js -------------------------------------------------------------------------------- /MarkerTracking/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: sans-serif; 3 | } -------------------------------------------------------------------------------- /MotionHistory/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/MotionHistory/index.html -------------------------------------------------------------------------------- /MotionHistory/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/MotionHistory/sketch.js -------------------------------------------------------------------------------- /MotionHistory/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: sans-serif; 3 | } -------------------------------------------------------------------------------- /ObjectRecognition/clarifai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/ObjectRecognition/clarifai.js -------------------------------------------------------------------------------- /ObjectRecognition/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/ObjectRecognition/index.html -------------------------------------------------------------------------------- /ObjectRecognition/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/ObjectRecognition/sketch.js -------------------------------------------------------------------------------- /ObjectRecognition/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/ObjectRecognition/style.css -------------------------------------------------------------------------------- /OpticalFlow/Graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/OpticalFlow/Graph.js -------------------------------------------------------------------------------- /OpticalFlow/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/OpticalFlow/flow.js -------------------------------------------------------------------------------- /OpticalFlow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/OpticalFlow/index.html -------------------------------------------------------------------------------- /OpticalFlow/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/OpticalFlow/sketch.js -------------------------------------------------------------------------------- /OpticalFlow/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: sans-serif; 3 | } -------------------------------------------------------------------------------- /PointTracking/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/PointTracking/index.html -------------------------------------------------------------------------------- /PointTracking/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/PointTracking/sketch.js -------------------------------------------------------------------------------- /PointTracking/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: sans-serif; 3 | } -------------------------------------------------------------------------------- /Thresholding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/Thresholding/index.html -------------------------------------------------------------------------------- /Thresholding/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/Thresholding/sketch.js -------------------------------------------------------------------------------- /Thresholding/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: sans-serif; 3 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/index.html -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/license.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/cv-examples/HEAD/readme.md --------------------------------------------------------------------------------