mirror of https://github.com/AlexeyAB/darknet.git
90 lines
2.1 KiB
JSON
90 lines
2.1 KiB
JSON
{
|
|
"name": "darknet",
|
|
"version": "0.2.5.7",
|
|
"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": [
|
|
{
|
|
"name": "getopt",
|
|
"platform": "windows & !mingw"
|
|
},
|
|
"pthreads",
|
|
"stb"
|
|
],
|
|
"features": {
|
|
"cuda": {
|
|
"description": "Build darknet with support for CUDA",
|
|
"dependencies": [
|
|
"cuda"
|
|
]
|
|
},
|
|
"cudnn": {
|
|
"description": "Build darknet with support for cuDNN",
|
|
"dependencies": [
|
|
"cuda",
|
|
"cudnn"
|
|
]
|
|
},
|
|
"cuda-opengl-integration": {
|
|
"description": "Build darknet with support for running networks straight from OpenGL textures",
|
|
"dependencies": [
|
|
"cuda",
|
|
"opengl"
|
|
]
|
|
},
|
|
"full": {
|
|
"description": "Build darknet fully featured",
|
|
"dependencies": [
|
|
{
|
|
"name": "darknet",
|
|
"features": [
|
|
"cuda",
|
|
"cudnn",
|
|
"opencv-cuda",
|
|
"cuda-opengl-integration"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"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": {
|
|
"description": "Build darknet with support for OpenCV2",
|
|
"dependencies": [
|
|
"opencv2"
|
|
]
|
|
},
|
|
"opencv3": {
|
|
"description": "Build darknet with support for OpenCV3",
|
|
"dependencies": [
|
|
"opencv3"
|
|
]
|
|
}
|
|
}
|
|
}
|