forked from Tossy0423/darknet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
177 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,110 @@ | ||
{ | ||
"name": "darknet", | ||
"version-string": "0.2.5.4", | ||
"port-version": 1, | ||
"port-version": 2, | ||
"homepage": "https://github.com/alexeyab/darknet", | ||
"description": "Neural networks for object detection", | ||
"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.", | ||
"dependencies": [ | ||
"stb", | ||
"pthreads", | ||
{ | ||
"name": "opencv", | ||
"features": [ "ffmpeg" ] | ||
"pthreads" | ||
], | ||
"features": { | ||
"cuda": { | ||
"description": "Build darknet with support for CUDA", | ||
"dependencies": [ | ||
"cuda" | ||
] | ||
}, | ||
{ | ||
"name": "cudnn", | ||
"platform": "!osx" | ||
"cudnn": { | ||
"description": "Build darknet with support for cuDNN", | ||
"dependencies": [ | ||
"cuda", | ||
"cudnn" | ||
] | ||
}, | ||
"opencv-base": { | ||
"description": "Build darknet with support for latest version of OpenCV", | ||
"dependencies": [ | ||
{ | ||
"name": "opencv", | ||
"features": [ | ||
"ffmpeg" | ||
] | ||
} | ||
] | ||
}, | ||
"opencv-cuda": { | ||
"description": "Build darknet with support for latest version of CUDA-enabled OpenCV", | ||
"dependencies": [ | ||
{ | ||
"name": "opencv", | ||
"features": [ | ||
"ffmpeg" | ||
] | ||
}, | ||
{ | ||
"name": "opencv", | ||
"features": [ | ||
"cuda" | ||
] | ||
} | ||
] | ||
}, | ||
"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": [ | ||
"ffmpeg" | ||
] | ||
}, | ||
{ | ||
"name": "opencv2", | ||
"features": [ | ||
"cuda" | ||
] | ||
} | ||
] | ||
}, | ||
"opencv3-base": { | ||
"description": "Build darknet with support for OpenCV3", | ||
"dependencies": [ | ||
{ | ||
"name": "opencv3", | ||
"features": [ | ||
"ffmpeg" | ||
] | ||
} | ||
] | ||
}, | ||
"opencv3-cuda": { | ||
"description": "Build darknet with support for CUDA-enabled OpenCV3", | ||
"dependencies": [ | ||
{ | ||
"name": "opencv3", | ||
"features": [ | ||
"ffmpeg" | ||
] | ||
}, | ||
{ | ||
"name": "opencv3", | ||
"features": [ | ||
"cuda" | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} |