├── .gitignore
├── README.md
├── index.html
├── style.css
└── video.js
/.gitignore:
--------------------------------------------------------------------------------
1 | hs
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # 🤖 ai-object-detection
2 | ## 👋 About this project
3 | This is a web AI object detection. You can use it in your web browser. This web application uses the camera of your device to detect objects.
4 |
5 | ## ⚙️ Features
6 |
7 | - ✅ Toggle switch to turn AI on or off
8 | - ✅ Range slider to control frame rate
9 |
10 | ## 🖼️ Images
11 |
12 |
13 | ## 💪 Try it
14 | If you are not convinced yet just try it out here: https://woody.pizza/tensorflow/object-detection/
15 |
16 | ## 🌐 Multiple browser support
17 | Probably this will work with the most browsers, but here is a list which browsers I have tested:
18 |
19 | | Browser | supported |
20 | |:-----------------:|:---------:|
21 | | Firefox | ✅ |
22 | | Chrome | ✅ |
23 | | Edge | ✅ |
24 | | Internet Explorer | ❌ |
25 |
26 | | Mobile Browser | supported |
27 | |:--------------:|:---------:|
28 | | Firefox | ✅ |
29 | | Chrome | ✅ |
30 |
31 | ## ✌️ Credits
32 | - [Materialize](https://materializecss.com/)
33 | - [ml5js](https://ml5js.org/)
34 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |