forked from AlexeyAB/darknet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vcpkg.json
115 lines (115 loc) · 2.55 KB
/
vcpkg.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "darknet",
"version-date": "2021-04-16",
"description": "Darknet is an open source neural network framework written in C and CUDA. You only look once (YOLO) is a state-of-the-art, real-time object detection system, best example of darknet functionalities.",
"homepage": "https://github.com/alexeyab/darknet",
"dependencies": [
"pthreads",
"stb"
],
"features": {
"cuda": {
"description": "Build darknet with support for CUDA",
"dependencies": [
"cuda"
]
},
"cudnn": {
"description": "Build darknet with support for cuDNN",
"dependencies": [
"cuda",
"cudnn"
]
},
"full": {
"description": "Build darknet fully featured",
"dependencies": [
{
"name": "darknet",
"features": [
"cuda",
"cudnn",
"opencv-cuda"
]
}
]
},
"opencv-base": {
"description": "Build darknet with support for latest version of OpenCV",
"dependencies": [
{
"name": "opencv",
"features": [
"contrib",
"dnn",
"ffmpeg"
]
}
]
},
"opencv-cuda": {
"description": "Build darknet with support for latest version of CUDA-enabled OpenCV",
"dependencies": [
{
"name": "opencv",
"features": [
"contrib",
"cuda",
"dnn",
"ffmpeg"
]
}
]
},
"opencv2-base": {
"description": "Build darknet with support for OpenCV2",
"dependencies": [
{
"name": "opencv2",
"features": [
"ffmpeg"
]
}
]
},
"opencv2-cuda": {
"description": "Build darknet with support for CUDA-enabled OpenCV2",
"dependencies": [
{
"name": "opencv2",
"features": [
"cuda",
"ffmpeg"
]
}
]
},
"opencv3-base": {
"description": "Build darknet with support for OpenCV3",
"dependencies": [
{
"name": "opencv3",
"features": [
"contrib",
"dnn",
"ffmpeg"
]
}
]
},
"opencv3-cuda": {
"description": "Build darknet with support for CUDA-enabled OpenCV3",
"dependencies": [
{
"name": "opencv3",
"features": [
"contrib",
"cuda",
"dnn",
"ffmpeg"
]
}
]
}
}
}