mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 22:11:37 +08:00
[opencv4] add dnn-cuda feature (#29796)
* [opencv4] add dnn-cuda feature * fmt * .\vcpkg.exe x-add-version --all
This commit is contained in:
parent
9484a57dd5
commit
2a95acc161
@ -1,6 +1,7 @@
|
||||
{
|
||||
"name": "opencv",
|
||||
"version": "4.7.0",
|
||||
"port-version": 1,
|
||||
"description": "Computer vision library",
|
||||
"homepage": "https://github.com/opencv/opencv",
|
||||
"license": "Apache-2.0",
|
||||
@ -111,6 +112,18 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"dnn-cuda": {
|
||||
"description": "Build dnn module with CUDA support",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "opencv4",
|
||||
"default-features": false,
|
||||
"features": [
|
||||
"dnn-cuda"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"eigen": {
|
||||
"description": "Eigen support for opencv",
|
||||
"dependencies": [
|
||||
|
@ -50,6 +50,7 @@ vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
||||
"cuda" WITH_CUBLAS
|
||||
"cuda" WITH_CUDA
|
||||
"cudnn" WITH_CUDNN
|
||||
"dnn-cuda" OPENCV_DNN_CUDA
|
||||
"eigen" WITH_EIGEN
|
||||
"ffmpeg" WITH_FFMPEG
|
||||
"freetype" WITH_FREETYPE
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "opencv4",
|
||||
"version": "4.7.0",
|
||||
"port-version": 2,
|
||||
"port-version": 3,
|
||||
"description": "computer vision library",
|
||||
"homepage": "https://github.com/opencv/opencv",
|
||||
"license": "Apache-2.0",
|
||||
@ -106,6 +106,19 @@
|
||||
"protobuf"
|
||||
]
|
||||
},
|
||||
"dnn-cuda": {
|
||||
"description": "Build dnn module with CUDA support",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "opencv4",
|
||||
"default-features": false,
|
||||
"features": [
|
||||
"cudnn",
|
||||
"dnn"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"eigen": {
|
||||
"description": "Eigen support for opencv",
|
||||
"dependencies": [
|
||||
|
@ -5670,7 +5670,7 @@
|
||||
},
|
||||
"opencv": {
|
||||
"baseline": "4.7.0",
|
||||
"port-version": 0
|
||||
"port-version": 1
|
||||
},
|
||||
"opencv2": {
|
||||
"baseline": "2.4.13.7",
|
||||
@ -5682,7 +5682,7 @@
|
||||
},
|
||||
"opencv4": {
|
||||
"baseline": "4.7.0",
|
||||
"port-version": 2
|
||||
"port-version": 3
|
||||
},
|
||||
"opendnp3": {
|
||||
"baseline": "3.1.1",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "7c13270745cf85fc4146cd4f21ee4f71eb2ca7e1",
|
||||
"version": "4.7.0",
|
||||
"port-version": 1
|
||||
},
|
||||
{
|
||||
"git-tree": "562bbf3bc1027e73456d71a10020ba984eec0eb1",
|
||||
"version": "4.7.0",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "ca4b616630bef409960661592549086539a7e28e",
|
||||
"version": "4.7.0",
|
||||
"port-version": 3
|
||||
},
|
||||
{
|
||||
"git-tree": "6a62c7557d02936ea929e86836f324d09c787de5",
|
||||
"version": "4.7.0",
|
||||
|
Loading…
Reference in New Issue
Block a user