Skip to content

Commit 4f33684

Browse files
committed
create documentation
1 parent f5a2d57 commit 4f33684

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

.github/object-detection.jpg

416 KB
Loading

README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<p align="center">
2+
<img src=".github/object-detection.jpg" alt="Nest Logo" />
3+
</p>
4+
5+
## Description
6+
7+
This application detects objects using TensorFlow.js, the CocoSSD model is already trained, it has 80 different classes for detection, such as Person, Cat, Dog, Cell Phone, Chair, etc.
8+
9+
To run this application it is necessary to have a WebCam to capture the video, the detection process is in real time, and to display the geometric shape the HTML Canvas was used.
10+
11+
## Install dependencies
12+
13+
```bash
14+
$ npm install
15+
```
16+
17+
If you have any errors in the installation process, run the command below:
18+
19+
```bash
20+
$ npm install --legacy-peer-deps
21+
```
22+
23+
## Running the app
24+
25+
```bash
26+
# Development mode
27+
$ npm run dev
28+
29+
# Production mode
30+
$ npm run build
31+
$ npm run preview
32+
```
33+
34+
### Now access app:
35+
36+
- **Development mode**: http://localhost:3000
37+
- **Production mode**: http://localhost:4173
38+
39+
## License
40+
41+
[MIT License](LICENSE).

0 commit comments

Comments
 (0)