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
You need only 2 files for train that are **YOLOv3SE_Train.exe** and **cudnn64_5.dll** on Windows.
22
-
If you are on Linux, then you need only **YOLOv3SE_Train**.
23
-
This files are in `YOLOv3_SpringEdition/bin`.
24
+
25
+
You need only 2 files for train that are **YOLOv3SE_Train.exe** and **cudnn64_5.dll** on Windows. If you are on Linux, then you need only **YOLOv3SE_Train**. This files are in `YOLOv3_SpringEdition/bin`.
24
26
25
27
The requirement interface not changed. Same as **[pjreddie/darknet](https://github.com/pjreddie/darknet)**.
26
28
@@ -34,58 +36,58 @@ And YOLOv3SE_Train.exe is automatically choosing multi-gpu training. and select
34
36
35
37
### 2. Setup for detect
36
38
37
-
Just include **YOLOv3SE.h** and use it. See `YOLOv3_SpringEdition_Test/`.
38
-
You need only **YOLOv3SE.h**, **libYOLOv3SE.dll** and **cudnn64_5.dll** for detect.
39
+
Just include **YOLOv3SE.h** and use it. See `YOLOv3_SpringEdition_Test/`. You need only **YOLOv3SE.h**, **libYOLOv3SE.dll** and **cudnn64_5.dll** for detect.
39
40
40
41
##### Reference
41
42
42
43
The class `YOLOv3` that in `YOLOv3SE.h` has 3 methods.
This method is detecting objects of `file`,`cv::Mat` or `IplImage`.
58
-
***Parameter**
59
-
* **file** : image file path
60
-
* **img** : 3-channel image.
61
-
* **threshold** : It removes predictive boxes if there score is less than threshold.
56
+
57
+
This method is detecting objects of `file`,`cv::Mat` or `IplImage`.***Parameter** * **file** : image file path * **img** : 3-channel image. * **threshold** : It removes predictive boxes if there score is less than threshold.
62
58
63
59
```cpp
64
60
voidRelease();
65
61
```
62
+
66
63
Release loaded network.
67
64
68
-
## Technical issue
65
+
Technical issue
66
+
---------------
69
67
70
-
Original YOLOv3(darknet) is linux version.
71
-
And **[AlexeyAB](https://github.com/AlexeyAB/darknet)** already made YOLOv3 Windows version.
72
-
But, his detection method is too slow on Windows. I don't know why exactly. Maybe it has bottleneck.
73
-
So, I converted **[darknet](https://github.com/pjreddie/darknet)**(YOLOv3 only) again.
68
+
Original YOLOv3(darknet) is linux version. And **[AlexeyAB](https://github.com/AlexeyAB/darknet)** already made YOLOv3 Windows version. But, his detection method is too slow on Windows. I don't know why exactly. Maybe it has bottleneck. So, I converted **[darknet](https://github.com/pjreddie/darknet)**(YOLOv3 only) again.
74
69
75
-
## change log
70
+
change log
71
+
----------
76
72
77
73
**build_windows.bat** and **build_linux.sh** will download automatically correct version of cudnn. and build as cmake.
0 commit comments