Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/renanmav/rcnn_object_detector
Object detector based on MobileNetV2
https://github.com/renanmav/rcnn_object_detector
Last synced: 10 days ago
JSON representation
Object detector based on MobileNetV2
- Host: GitHub
- URL: https://github.com/renanmav/rcnn_object_detector
- Owner: renanmav
- Created: 2021-08-10T23:51:40.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-10T23:51:56.000Z (over 3 years ago)
- Last Synced: 2024-11-14T21:39:02.342Z (2 months ago)
- Language: Python
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rcnn_object_detector
Based on [this blog post](https://www.pyimagesearch.com/2020/07/13/r-cnn-object-detection-with-keras-tensorflow-and-deep-learning/) by Adrian Rosebrock.
GPU enabled.
# Run it
With docker GPU support enabled, run:
```
# Build image based on Dockerfile and tag it
docker build -t rcnnobjectdetector .# Run interactive container with repository volume mapping and gpu support
docker run -it --rm \
--gpus all \
-u $(id -u):$(id -g) \
-v $PWD:/home/rcnn_object_detector rcnnobjectdetector
```