-
Notifications
You must be signed in to change notification settings - Fork 18
/
dub.json
151 lines (151 loc) · 4.72 KB
/
dub.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "dcv",
"version": "0.4.0",
"description": "Computer vision library for D programming language.",
"copyright": "Copyright © 2016, Relja Ljubobratovic",
"authors": [
"Relja Ljubobratovic",
"Ilya Yaroshenko",
"Henry Gouk",
"Dmitry Olshansky",
"Timothee Cour",
"Arun Chandrasekaran",
"The Gitter Badger",
"Ferhat Kurtulmuş"
],
"license": "BSL-1.0",
"dependencies": {
"dcv:core": "*",
"dcv:imageio": "*",
"dcv:videoio": "*",
"dcv:plot": "*",
"dcv:linalg": "*"
},
"targetType": "library",
"sourceFiles": ["source/dcv/package.d"],
"subPackages": [
{
"name": "core",
"description": "Core package of DCV. Contains computer vision algorithms.",
"sourcePaths": [
"source/dcv/core",
"source/dcv/features",
"source/dcv/imgproc",
"source/dcv/tracking",
"source/dcv/measure",
"source/dcv/morphology",
"source/dcv/multiview"
],
"dependencies":
{
"mir-algorithm": "~>3.22.0",
"mir-random": "2.2.19",
"mir-core": "~>1.7.0",
"bcaa": "~>0.0.8",
"dvector": "~>0.0.5",
"dplug:core": "~>13.4.9"
},
"buildTypes": {
"unittest-release": {
"buildOptions": ["unittests", "releaseMode", "optimize", "inline"]
}
}
},
{
"name": "linalg",
"description": "A small wrapper to kaleidic.lubeck and image processing algorithms utilizing linear algebra",
"sourcePaths": [
"source/dcv/linalg"
],
"comment1": "Required linkage must be provided in user code.",
"comment2": "See https://github.com/libmir/mir-lapack/wiki/Link-with-CBLAS-&-LAPACK.",
"dependencies": {
"dcv:core": "*",
"lubeck": {
"repository": "git+https://github.com/aferust/lubeck",
"version": "455dd4d"
}
},
"buildTypes": {
"unittest-release": {
"buildOptions": ["unittests", "releaseMode", "optimize", "inline"]
}
}
},
{
"name": "imageio",
"description": "Image I/O package.",
"sourcePaths": [
"source/dcv/imageio"
],
"dependencies":{
"dcv:core": "*",
"gamut": "~>2.6.0"
},
"buildTypes": {
"unittest-release": {
"buildOptions": ["unittests", "releaseMode", "optimize", "inline"]
}
}
},
{
"name": "videoio",
"description": "Video I/O package.",
"sourcePaths": [ "source/dcv/videoio/"],
"dependencies": {
"dcv:core": "*",
"dcv:imageio": "*",
"ffmpeg-d": "~>4.4.1"
}
},
{
"name": "plot",
"description": "Visualization package.",
"sourcePaths": [
"source/dcv/plot"
],
"buildTypes": {
"unittest-release": {
"buildOptions": ["unittests", "releaseMode", "optimize", "inline"]
}
},
"dependencies":{
"dcv:core": "*",
"bindbc-opengl": "~>1.0.0"
},
"versions": ["GLFW_31"],
"configurations": [
{
"name": "default",
"versions": [
"GL_31", "BindGLFW_NoGC_Callbacks"
],
"dependencies": {
"bindbc-glfw": "~>1.0.0"
}
},
{
"name": "legacygl",
"versions": [
"GL_11",
"GL_AllowDeprecated",
"UseLegacyGL",
"BindGLFW_NoGC_Callbacks"
],
"dependencies": {
"bindbc-glfw": "~>1.0.0"
}
},
{
"name": "use-glfw-d",
"versions": [
"GL_31", "GLFW_D"
],
"dependencies": {
"glfw-d": "~>1.1.0"
}
}
]
}
]
}