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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
#[cfg(ocvrs_has_module_alphamat)]
pub mod alphamat;
#[cfg(ocvrs_has_module_aruco)]
pub mod aruco;
#[cfg(ocvrs_has_module_barcode)]
pub mod barcode;
#[cfg(ocvrs_has_module_bgsegm)]
pub mod bgsegm;
#[cfg(ocvrs_has_module_bioinspired)]
pub mod bioinspired;
#[cfg(ocvrs_has_module_calib3d)]
pub mod calib3d;
#[cfg(ocvrs_has_module_ccalib)]
pub mod ccalib;
#[cfg(ocvrs_has_module_core)]
pub mod core;
#[cfg(ocvrs_has_module_cudaarithm)]
pub mod cudaarithm;
#[cfg(ocvrs_has_module_cudabgsegm)]
pub mod cudabgsegm;
#[cfg(ocvrs_has_module_cudacodec)]
pub mod cudacodec;
#[cfg(ocvrs_has_module_cudafeatures2d)]
pub mod cudafeatures2d;
#[cfg(ocvrs_has_module_cudafilters)]
pub mod cudafilters;
#[cfg(ocvrs_has_module_cudaimgproc)]
pub mod cudaimgproc;
#[cfg(ocvrs_has_module_cudaobjdetect)]
pub mod cudaobjdetect;
#[cfg(ocvrs_has_module_cudaoptflow)]
pub mod cudaoptflow;
#[cfg(ocvrs_has_module_cudastereo)]
pub mod cudastereo;
#[cfg(ocvrs_has_module_cudawarping)]
pub mod cudawarping;
#[cfg(ocvrs_has_module_cvv)]
pub mod cvv;
#[cfg(ocvrs_has_module_dnn)]
pub mod dnn;
#[cfg(ocvrs_has_module_dnn_superres)]
pub mod dnn_superres;
#[cfg(ocvrs_has_module_dpm)]
pub mod dpm;
#[cfg(ocvrs_has_module_face)]
pub mod face;
#[cfg(ocvrs_has_module_features2d)]
pub mod features2d;
#[cfg(ocvrs_has_module_flann)]
pub mod flann;
#[cfg(ocvrs_has_module_freetype)]
pub mod freetype;
#[cfg(ocvrs_has_module_fuzzy)]
pub mod fuzzy;
#[cfg(ocvrs_has_module_gapi)]
pub mod gapi;
#[cfg(ocvrs_has_module_hdf)]
pub mod hdf;
#[cfg(ocvrs_has_module_hfs)]
pub mod hfs;
#[cfg(ocvrs_has_module_highgui)]
pub mod highgui;
#[cfg(ocvrs_has_module_img_hash)]
pub mod img_hash;
#[cfg(ocvrs_has_module_imgcodecs)]
pub mod imgcodecs;
#[cfg(ocvrs_has_module_imgproc)]
pub mod imgproc;
#[cfg(ocvrs_has_module_intensity_transform)]
pub mod intensity_transform;
#[cfg(ocvrs_has_module_line_descriptor)]
pub mod line_descriptor;
#[cfg(ocvrs_has_module_mcc)]
pub mod mcc;
#[cfg(ocvrs_has_module_ml)]
pub mod ml;
#[cfg(ocvrs_has_module_objdetect)]
pub mod objdetect;
#[cfg(ocvrs_has_module_optflow)]
pub mod optflow;
#[cfg(ocvrs_has_module_ovis)]
pub mod ovis;
#[cfg(ocvrs_has_module_phase_unwrapping)]
pub mod phase_unwrapping;
#[cfg(ocvrs_has_module_photo)]
pub mod photo;
#[cfg(ocvrs_has_module_plot)]
pub mod plot;
#[cfg(ocvrs_has_module_quality)]
pub mod quality;
#[cfg(ocvrs_has_module_rapid)]
pub mod rapid;
#[cfg(ocvrs_has_module_rgbd)]
pub mod rgbd;
#[cfg(ocvrs_has_module_saliency)]
pub mod saliency;
#[cfg(ocvrs_has_module_sfm)]
pub mod sfm;
#[cfg(ocvrs_has_module_shape)]
pub mod shape;
#[cfg(ocvrs_has_module_stereo)]
pub mod stereo;
#[cfg(ocvrs_has_module_stitching)]
pub mod stitching;
#[cfg(ocvrs_has_module_structured_light)]
pub mod structured_light;
#[cfg(ocvrs_has_module_superres)]
pub mod superres;
#[cfg(ocvrs_has_module_surface_matching)]
pub mod surface_matching;
#[cfg(ocvrs_has_module_text)]
pub mod text;
#[cfg(ocvrs_has_module_tracking)]
pub mod tracking;
#[cfg(ocvrs_has_module_video)]
pub mod video;
#[cfg(ocvrs_has_module_videoio)]
pub mod videoio;
#[cfg(ocvrs_has_module_videostab)]
pub mod videostab;
#[cfg(ocvrs_has_module_viz)]
pub mod viz;
#[cfg(ocvrs_has_module_wechat_qrcode)]
pub mod wechat_qrcode;
#[cfg(ocvrs_has_module_xfeatures2d)]
pub mod xfeatures2d;
#[cfg(ocvrs_has_module_ximgproc)]
pub mod ximgproc;
#[cfg(ocvrs_has_module_xobjdetect)]
pub mod xobjdetect;
#[cfg(ocvrs_has_module_xphoto)]
pub mod xphoto;
pub mod types;
#[doc(hidden)]
pub mod sys;
pub mod hub_prelude {
#[cfg(ocvrs_has_module_alphamat)]
pub use super::alphamat::prelude::*;
#[cfg(ocvrs_has_module_aruco)]
pub use super::aruco::prelude::*;
#[cfg(ocvrs_has_module_barcode)]
pub use super::barcode::prelude::*;
#[cfg(ocvrs_has_module_bgsegm)]
pub use super::bgsegm::prelude::*;
#[cfg(ocvrs_has_module_bioinspired)]
pub use super::bioinspired::prelude::*;
#[cfg(ocvrs_has_module_calib3d)]
pub use super::calib3d::prelude::*;
#[cfg(ocvrs_has_module_ccalib)]
pub use super::ccalib::prelude::*;
#[cfg(ocvrs_has_module_core)]
pub use super::core::prelude::*;
#[cfg(ocvrs_has_module_cudaarithm)]
pub use super::cudaarithm::prelude::*;
#[cfg(ocvrs_has_module_cudabgsegm)]
pub use super::cudabgsegm::prelude::*;
#[cfg(ocvrs_has_module_cudacodec)]
pub use super::cudacodec::prelude::*;
#[cfg(ocvrs_has_module_cudafeatures2d)]
pub use super::cudafeatures2d::prelude::*;
#[cfg(ocvrs_has_module_cudafilters)]
pub use super::cudafilters::prelude::*;
#[cfg(ocvrs_has_module_cudaimgproc)]
pub use super::cudaimgproc::prelude::*;
#[cfg(ocvrs_has_module_cudaobjdetect)]
pub use super::cudaobjdetect::prelude::*;
#[cfg(ocvrs_has_module_cudaoptflow)]
pub use super::cudaoptflow::prelude::*;
#[cfg(ocvrs_has_module_cudastereo)]
pub use super::cudastereo::prelude::*;
#[cfg(ocvrs_has_module_cudawarping)]
pub use super::cudawarping::prelude::*;
#[cfg(ocvrs_has_module_cvv)]
pub use super::cvv::prelude::*;
#[cfg(ocvrs_has_module_dnn)]
pub use super::dnn::prelude::*;
#[cfg(ocvrs_has_module_dnn_superres)]
pub use super::dnn_superres::prelude::*;
#[cfg(ocvrs_has_module_dpm)]
pub use super::dpm::prelude::*;
#[cfg(ocvrs_has_module_face)]
pub use super::face::prelude::*;
#[cfg(ocvrs_has_module_features2d)]
pub use super::features2d::prelude::*;
#[cfg(ocvrs_has_module_flann)]
pub use super::flann::prelude::*;
#[cfg(ocvrs_has_module_freetype)]
pub use super::freetype::prelude::*;
#[cfg(ocvrs_has_module_fuzzy)]
pub use super::fuzzy::prelude::*;
#[cfg(ocvrs_has_module_gapi)]
pub use super::gapi::prelude::*;
#[cfg(ocvrs_has_module_hdf)]
pub use super::hdf::prelude::*;
#[cfg(ocvrs_has_module_hfs)]
pub use super::hfs::prelude::*;
#[cfg(ocvrs_has_module_highgui)]
pub use super::highgui::prelude::*;
#[cfg(ocvrs_has_module_img_hash)]
pub use super::img_hash::prelude::*;
#[cfg(ocvrs_has_module_imgcodecs)]
pub use super::imgcodecs::prelude::*;
#[cfg(ocvrs_has_module_imgproc)]
pub use super::imgproc::prelude::*;
#[cfg(ocvrs_has_module_intensity_transform)]
pub use super::intensity_transform::prelude::*;
#[cfg(ocvrs_has_module_line_descriptor)]
pub use super::line_descriptor::prelude::*;
#[cfg(ocvrs_has_module_mcc)]
pub use super::mcc::prelude::*;
#[cfg(ocvrs_has_module_ml)]
pub use super::ml::prelude::*;
#[cfg(ocvrs_has_module_objdetect)]
pub use super::objdetect::prelude::*;
#[cfg(ocvrs_has_module_optflow)]
pub use super::optflow::prelude::*;
#[cfg(ocvrs_has_module_ovis)]
pub use super::ovis::prelude::*;
#[cfg(ocvrs_has_module_phase_unwrapping)]
pub use super::phase_unwrapping::prelude::*;
#[cfg(ocvrs_has_module_photo)]
pub use super::photo::prelude::*;
#[cfg(ocvrs_has_module_plot)]
pub use super::plot::prelude::*;
#[cfg(ocvrs_has_module_quality)]
pub use super::quality::prelude::*;
#[cfg(ocvrs_has_module_rapid)]
pub use super::rapid::prelude::*;
#[cfg(ocvrs_has_module_rgbd)]
pub use super::rgbd::prelude::*;
#[cfg(ocvrs_has_module_saliency)]
pub use super::saliency::prelude::*;
#[cfg(ocvrs_has_module_sfm)]
pub use super::sfm::prelude::*;
#[cfg(ocvrs_has_module_shape)]
pub use super::shape::prelude::*;
#[cfg(ocvrs_has_module_stereo)]
pub use super::stereo::prelude::*;
#[cfg(ocvrs_has_module_stitching)]
pub use super::stitching::prelude::*;
#[cfg(ocvrs_has_module_structured_light)]
pub use super::structured_light::prelude::*;
#[cfg(ocvrs_has_module_superres)]
pub use super::superres::prelude::*;
#[cfg(ocvrs_has_module_surface_matching)]
pub use super::surface_matching::prelude::*;
#[cfg(ocvrs_has_module_text)]
pub use super::text::prelude::*;
#[cfg(ocvrs_has_module_tracking)]
pub use super::tracking::prelude::*;
#[cfg(ocvrs_has_module_video)]
pub use super::video::prelude::*;
#[cfg(ocvrs_has_module_videoio)]
pub use super::videoio::prelude::*;
#[cfg(ocvrs_has_module_videostab)]
pub use super::videostab::prelude::*;
#[cfg(ocvrs_has_module_viz)]
pub use super::viz::prelude::*;
#[cfg(ocvrs_has_module_wechat_qrcode)]
pub use super::wechat_qrcode::prelude::*;
#[cfg(ocvrs_has_module_xfeatures2d)]
pub use super::xfeatures2d::prelude::*;
#[cfg(ocvrs_has_module_ximgproc)]
pub use super::ximgproc::prelude::*;
#[cfg(ocvrs_has_module_xobjdetect)]
pub use super::xobjdetect::prelude::*;
#[cfg(ocvrs_has_module_xphoto)]
pub use super::xphoto::prelude::*;
}