diff --git a/docs/reference/object-detection.md b/docs/reference/object-detection.md new file mode 100644 index 0000000..ef9facf --- /dev/null +++ b/docs/reference/object-detection.md @@ -0,0 +1,39 @@ +# ObjectDetection + +
+ ImageClassifier Header Image +

Image Credit: Naveen | Contribute ♥️

+
+ +## Description + +The ml5.js objectDetection is a pre-trained model that can detect object from an image or a video. + +### Supported models +The ml5.js objectDetection uses pre-trained **Tensorflow.js CocoSsd model** by default. + +Support for more models such as Transformer.js is under development. + +### Model and Data Provenance +ml5.js team believes that it is important to not only use the model, but to understand where it is coming from : what data was used, who trained and for waht reason. For more information on the model, please visit [Model and Data Provenance](https://archive-docs.ml5js.org/#/reference/object-detector?id=model-and-data-provenance) + + +### Functionality +The ml5.js objectDetection detects objects in a source input. + +The source input can be : + +- **Webcam** +- **Image File** +- **Video File** + +## Quick Start +Run and explore pre-built examples! + +### Examples - p5 sketches +- [ObjectDetection Webcam]() +- [ObjectDetection Image]() +- [ObjectDetection Video]() + +### Video Tutorials +- [ml5.js: Object Detection with COCO-SSD](https://youtu.be/QEzRxnuaZCk) by the Coding Train \ No newline at end of file diff --git a/docs/sidebar.md b/docs/sidebar.md index 325bc26..08f5984 100644 --- a/docs/sidebar.md +++ b/docs/sidebar.md @@ -25,6 +25,7 @@ - [ImageClassifier](/reference/image-classifier.md) - [SoundClassifier](/reference/sound-classifier.md) - [Sentiment](/reference/sentiment.md) +- [ObjectDetection](/reference/object-detection.md)