Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucleray/object-detection
an api to detect objects on images using server-side tensorflow-js
https://github.com/lucleray/object-detection
machine-learning object-detection tensorflow zeit-now
Last synced: 12 days ago
JSON representation
an api to detect objects on images using server-side tensorflow-js
- Host: GitHub
- URL: https://github.com/lucleray/object-detection
- Owner: lucleray
- Created: 2019-02-18T03:10:29.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-03T04:24:25.000Z (about 2 years ago)
- Last Synced: 2024-11-28T20:11:57.189Z (24 days ago)
- Topics: machine-learning, object-detection, tensorflow, zeit-now
- Language: JavaScript
- Homepage: https://object-detection.vercel.app
- Size: 2.57 MB
- Stars: 80
- Watchers: 3
- Forks: 16
- Open Issues: 9
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# object-detection
An API and an app to detect objects on images.
**Deploy on Vercel:**
[![Deploy to Vercel](https://zeit.co/button)](https://vercel.com/new/project?template=lucleray/object-detection)
### 👉 [Demo here](https://object-detection.vercel.app)
![Screenshot of the app](screenshot.png)
If you want to read more about how this was made, [read the detailed article about it on Vercel's blog](https://zeit.co/blog/serverless-machine-learning).
The repository contains two folders:
- `/api`, the code of the API taking care of detecting objects on images, powered by Tensorflow
- `/app`, the code of the frontend website, powered by Next.js## Development
Running the API locally:
```
yarn --cwd api run dev
```Running the app locally:
```
yarn --cwd app run dev
```