You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Python wrapper on [pjreddie's](https://pjreddie.com/) implementation (authors' implementation) of [YOLO V3 Object Detector](https://pjreddie.com/darknet/yolo) on [Darknet](https://github.com/pjreddie/darknet).
2
-
Also compatible with other Darknet Object Detection models.
2
+
This wrapper is also compatible with other Darknet object detection models.
yolo34py comes in2 variants, _CPU Only Version_ and_GPU Version_. Installation may take a while since it involves downloading and compiling of darknet.
40
+
yolo34py comes in2 variants, _CPU Only Version_ and_GPU Version_.
41
+
Installation may take a while since it involves downloading and compiling darknet.
41
42
42
43
## __CPU Only Version__
43
44
This version is configured on darknet compiled with flag GPU=0.
44
45
```bash
46
+
pip3 install requests # Used to download darknet
47
+
pip3 install cython
45
48
pip3 install numpy
46
49
pip3 install yolo34py
47
50
```
48
51
49
52
## GPU Version:
50
53
This version is configured on darknet compiled with flag GPU = 1.
51
54
```bash
55
+
pip3 install requests # Used to download darknet
56
+
pip3 install cython
52
57
pip3 install numpy
53
58
pip3 install yolo34py-gpu
54
59
```
55
60
56
61
57
62
# More Information
58
63
* For more details on yolo34py (This python wrapper):
0 commit comments