Skip to content

Commit 3742125

Browse files
committed
Enable the signal module
1 parent 40bd030 commit 3742125

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ default = [
110110
"saliency",
111111
"sfm",
112112
"shape",
113+
"signal",
113114
"stereo",
114115
"stitching",
115116
"structured_light",
@@ -179,6 +180,7 @@ rgbd = []
179180
saliency = []
180181
sfm = []
181182
shape = []
183+
signal = []
182184
stereo = []
183185
stitching = ["features2d", "imgproc"]
184186
structured_light = []

build.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,15 @@ static AFFECTING_ENV_VARS: [&str; 18] = [
6969
"DOCS_RS",
7070
];
7171

72-
static SUPPORTED_MODULES: [&str; 67] = [
72+
static SUPPORTED_MODULES: [&str; 68] = [
7373
"alphamat",
7474
"aruco",
7575
"aruco_detector",
7676
"barcode",
7777
"bgsegm",
7878
"bioinspired",
7979
"calib3d",
80+
// "cannops",
8081
"ccalib",
8182
"core",
8283
"cudaarithm",
@@ -89,6 +90,7 @@ static SUPPORTED_MODULES: [&str; 67] = [
8990
"cudaoptflow",
9091
"cudastereo",
9192
"cudawarping",
93+
// "cudev",
9294
"cvv",
9395
"dnn",
9496
"dnn_superres",
@@ -121,6 +123,7 @@ static SUPPORTED_MODULES: [&str; 67] = [
121123
"saliency",
122124
"sfm",
123125
"shape",
126+
"signal",
124127
"stereo",
125128
"stitching",
126129
"structured_light",

0 commit comments

Comments
 (0)