2021-01-22 00:36:00 +08:00
{
"name" : "darknet" ,
2023-09-27 08:04:56 +08:00
"version" : "0.2.5.7" ,
2021-02-20 16:28:07 +08:00
"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." ,
2021-04-18 21:11:36 +08:00
"homepage" : "https://github.com/alexeyab/darknet" ,
2021-01-22 00:36:00 +08:00
"dependencies" : [
2023-09-27 08:04:56 +08:00
{
"name" : "getopt" ,
"platform" : "windows & !mingw"
} ,
2021-04-18 21:11:36 +08:00
"pthreads" ,
"stb"
2021-02-20 16:28:07 +08:00
] ,
"features" : {
"cuda" : {
"description" : "Build darknet with support for CUDA" ,
"dependencies" : [
"cuda"
]
2021-01-22 00:36:00 +08:00
} ,
2021-02-20 16:28:07 +08:00
"cudnn" : {
"description" : "Build darknet with support for cuDNN" ,
"dependencies" : [
"cuda" ,
"cudnn"
]
} ,
2023-08-26 09:50:00 +08:00
"cuda-opengl-integration" : {
"description" : "Build darknet with support for running networks straight from OpenGL textures" ,
"dependencies" : [
"cuda" ,
"opengl"
]
} ,
2021-04-18 21:11:36 +08:00
"full" : {
"description" : "Build darknet fully featured" ,
"dependencies" : [
{
"name" : "darknet" ,
"features" : [
"cuda" ,
"cudnn" ,
2023-08-26 09:50:00 +08:00
"opencv-cuda" ,
"cuda-opengl-integration"
2021-04-18 21:11:36 +08:00
]
}
]
} ,
2021-02-20 16:28:07 +08:00
"opencv-base" : {
"description" : "Build darknet with support for latest version of OpenCV" ,
"dependencies" : [
{
"name" : "opencv" ,
"features" : [
2021-02-21 19:47:05 +08:00
"contrib" ,
"dnn" ,
2021-02-20 16:28:07 +08:00
"ffmpeg"
]
}
]
} ,
"opencv-cuda" : {
"description" : "Build darknet with support for latest version of CUDA-enabled OpenCV" ,
"dependencies" : [
{
"name" : "opencv" ,
"features" : [
2021-02-21 19:47:05 +08:00
"contrib" ,
"cuda" ,
"dnn" ,
2021-02-20 16:28:07 +08:00
"ffmpeg"
]
}
]
} ,
2024-10-10 15:59:36 +08:00
"opencv2" : {
2021-02-20 16:28:07 +08:00
"description" : "Build darknet with support for OpenCV2" ,
"dependencies" : [
2024-10-10 15:59:36 +08:00
"opencv2"
2021-02-20 16:28:07 +08:00
]
} ,
2024-10-10 15:59:36 +08:00
"opencv3" : {
2021-02-20 16:28:07 +08:00
"description" : "Build darknet with support for OpenCV3" ,
"dependencies" : [
2024-10-10 15:59:36 +08:00
"opencv3"
2021-02-20 16:28:07 +08:00
]
2021-01-22 00:36:00 +08:00
}
2021-02-20 16:28:07 +08:00
}
2021-01-22 00:36:00 +08:00
}