optimized gpu::remap (use texture memory if possible), added stream support to gpu...
[profile/ivi/opencv.git] / modules / gpu / include / opencv2 / gpu / gpu.hpp
1 /*M///////////////////////////////////////////////////////////////////////////////////////\r
2 //\r
3 //  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.\r
4 //\r
5 //  By downloading, copying, installing or using the software you agree to this license.\r
6 //  If you do not agree to this license, do not download, install,\r
7 //  copy or use the software.\r
8 //\r
9 //\r
10 //                           License Agreement\r
11 //                For Open Source Computer Vision Library\r
12 //\r
13 // Copyright (C) 2000-2008, Intel Corporation, all rights reserved.\r
14 // Copyright (C) 2009, Willow Garage Inc., all rights reserved.\r
15 // Third party copyrights are property of their respective owners.\r
16 //\r
17 // Redistribution and use in source and binary forms, with or without modification,\r
18 // are permitted provided that the following conditions are met:\r
19 //\r
20 //   * Redistribution's of source code must retain the above copyright notice,\r
21 //     this list of conditions and the following disclaimer.\r
22 //\r
23 //   * Redistribution's in binary form must reproduce the above copyright notice,\r
24 //     this list of conditions and the following disclaimer in the documentation\r
25 //     and/or other GpuMaterials provided with the distribution.\r
26 //\r
27 //   * The name of the copyright holders may not be used to endorse or promote products\r
28 //     derived from this software without specific prior written permission.\r
29 //\r
30 // This software is provided by the copyright holders and contributors "as is" and\r
31 // any express or implied warranties, including, but not limited to, the implied\r
32 // warranties of merchantability and fitness for a particular purpose are disclaimed.\r
33 // In no event shall the Intel Corporation or contributors be liable for any direct,\r
34 // indirect, incidental, special, exemplary, or consequential damages\r
35 // (including, but not limited to, procurement of substitute goods or services;\r
36 // loss of use, data, or profits; or business interruption) however caused\r
37 // and on any theory of liability, whether in contract, strict liability,\r
38 // or tort (including negligence or otherwise) arising in any way out of\r
39 // the use of this software, even if advised of the possibility of such damage.\r
40 //\r
41 //M*/\r
42 \r
43 #ifndef __OPENCV_GPU_HPP__\r
44 #define __OPENCV_GPU_HPP__\r
45 \r
46 #include <vector>\r
47 #include "opencv2/core/core.hpp"\r
48 #include "opencv2/imgproc/imgproc.hpp"\r
49 #include "opencv2/objdetect/objdetect.hpp"\r
50 #include "opencv2/features2d/features2d.hpp"\r
51 #include "opencv2/gpu/gpumat.hpp"\r
52 \r
53 namespace cv\r
54 {\r
55     namespace gpu\r
56     {\r
57         //////////////////////////////// Initialization & Info ////////////////////////\r
58 \r
59         //! This is the only function that do not throw exceptions if the library is compiled without Cuda.\r
60         CV_EXPORTS int getCudaEnabledDeviceCount();\r
61 \r
62         //! Functions below throw cv::Expception if the library is compiled without Cuda.\r
63 \r
64         CV_EXPORTS void setDevice(int device);\r
65         CV_EXPORTS int getDevice();\r
66 \r
67         //! Explicitly destroys and cleans up all resources associated with the current device in the current process. \r
68         //! Any subsequent API call to this device will reinitialize the device.\r
69         CV_EXPORTS void resetDevice();\r
70 \r
71         enum FeatureSet\r
72         {\r
73             FEATURE_SET_COMPUTE_10 = 10,\r
74             FEATURE_SET_COMPUTE_11 = 11,\r
75             FEATURE_SET_COMPUTE_12 = 12,\r
76             FEATURE_SET_COMPUTE_13 = 13,\r
77             FEATURE_SET_COMPUTE_20 = 20,\r
78             FEATURE_SET_COMPUTE_21 = 21,\r
79             GLOBAL_ATOMICS = FEATURE_SET_COMPUTE_11,\r
80             SHARED_ATOMICS = FEATURE_SET_COMPUTE_12,\r
81             NATIVE_DOUBLE = FEATURE_SET_COMPUTE_13\r
82         };\r
83 \r
84         // Gives information about what GPU archs this OpenCV GPU module was \r
85         // compiled for\r
86         class CV_EXPORTS TargetArchs\r
87         {\r
88         public:\r
89             static bool builtWith(FeatureSet feature_set);\r
90             static bool has(int major, int minor);\r
91             static bool hasPtx(int major, int minor);\r
92             static bool hasBin(int major, int minor);\r
93             static bool hasEqualOrLessPtx(int major, int minor);\r
94             static bool hasEqualOrGreater(int major, int minor);\r
95             static bool hasEqualOrGreaterPtx(int major, int minor);\r
96             static bool hasEqualOrGreaterBin(int major, int minor);\r
97         private:\r
98             TargetArchs();\r
99         };\r
100 \r
101         // Gives information about the given GPU\r
102         class CV_EXPORTS DeviceInfo\r
103         {\r
104         public:\r
105             // Creates DeviceInfo object for the current GPU\r
106             DeviceInfo() : device_id_(getDevice()) { query(); }\r
107 \r
108             // Creates DeviceInfo object for the given GPU\r
109             DeviceInfo(int device_id) : device_id_(device_id) { query(); }\r
110 \r
111             string name() const { return name_; }\r
112 \r
113             // Return compute capability versions\r
114             int majorVersion() const { return majorVersion_; }\r
115             int minorVersion() const { return minorVersion_; }\r
116 \r
117             int multiProcessorCount() const { return multi_processor_count_; }\r
118 \r
119             size_t freeMemory() const;\r
120             size_t totalMemory() const;\r
121 \r
122             // Checks whether device supports the given feature\r
123             bool supports(FeatureSet feature_set) const;\r
124 \r
125             // Checks whether the GPU module can be run on the given device\r
126             bool isCompatible() const;\r
127 \r
128             int deviceID() const { return device_id_; }\r
129 \r
130         private:\r
131             void query();\r
132             void queryMemory(size_t& free_memory, size_t& total_memory) const;\r
133 \r
134             int device_id_;\r
135 \r
136             string name_;\r
137             int multi_processor_count_;\r
138             int majorVersion_;\r
139             int minorVersion_;\r
140         };\r
141 \r
142         //////////////////////////////// Error handling ////////////////////////\r
143 \r
144         CV_EXPORTS void error(const char *error_string, const char *file, const int line, const char *func);\r
145         CV_EXPORTS void nppError( int err, const char *file, const int line, const char *func);\r
146 \r
147         //////////////////////////////// CudaMem ////////////////////////////////\r
148         // CudaMem is limited cv::Mat with page locked memory allocation.\r
149         // Page locked memory is only needed for async and faster coping to GPU.\r
150         // It is convertable to cv::Mat header without reference counting\r
151         // so you can use it with other opencv functions.\r
152 \r
153         // Page-locks the matrix m memory and maps it for the device(s)\r
154         CV_EXPORTS void registerPageLocked(Mat& m);\r
155         // Unmaps the memory of matrix m, and makes it pageable again.\r
156         CV_EXPORTS void unregisterPageLocked(Mat& m);\r
157 \r
158         class CV_EXPORTS CudaMem\r
159         {\r
160         public:\r
161             enum  { ALLOC_PAGE_LOCKED = 1, ALLOC_ZEROCOPY = 2, ALLOC_WRITE_COMBINED = 4 };\r
162 \r
163             CudaMem();\r
164             CudaMem(const CudaMem& m);\r
165 \r
166             CudaMem(int rows, int cols, int type, int _alloc_type = ALLOC_PAGE_LOCKED);\r
167             CudaMem(Size size, int type, int alloc_type = ALLOC_PAGE_LOCKED);\r
168 \r
169 \r
170             //! creates from cv::Mat with coping data\r
171             explicit CudaMem(const Mat& m, int alloc_type = ALLOC_PAGE_LOCKED);\r
172 \r
173             ~CudaMem();\r
174 \r
175             CudaMem& operator = (const CudaMem& m);\r
176 \r
177             //! returns deep copy of the matrix, i.e. the data is copied\r
178             CudaMem clone() const;\r
179 \r
180             //! allocates new matrix data unless the matrix already has specified size and type.\r
181             void create(int rows, int cols, int type, int alloc_type = ALLOC_PAGE_LOCKED);\r
182             void create(Size size, int type, int alloc_type = ALLOC_PAGE_LOCKED);\r
183 \r
184             //! decrements reference counter and released memory if needed.\r
185             void release();\r
186 \r
187             //! returns matrix header with disabled reference counting for CudaMem data.\r
188             Mat createMatHeader() const;\r
189             operator Mat() const;\r
190 \r
191             //! maps host memory into device address space and returns GpuMat header for it. Throws exception if not supported by hardware.\r
192             GpuMat createGpuMatHeader() const;\r
193             operator GpuMat() const;\r
194 \r
195             //returns if host memory can be mapperd to gpu address space;\r
196             static bool canMapHostMemory();\r
197 \r
198             // Please see cv::Mat for descriptions\r
199             bool isContinuous() const;\r
200             size_t elemSize() const;\r
201             size_t elemSize1() const;\r
202             int type() const;\r
203             int depth() const;\r
204             int channels() const;\r
205             size_t step1() const;\r
206             Size size() const;\r
207             bool empty() const;\r
208 \r
209 \r
210             // Please see cv::Mat for descriptions\r
211             int flags;\r
212             int rows, cols;\r
213             size_t step;\r
214 \r
215             uchar* data;\r
216             int* refcount;\r
217 \r
218             uchar* datastart;\r
219             uchar* dataend;\r
220 \r
221             int alloc_type;\r
222         };\r
223 \r
224         //////////////////////////////// CudaStream ////////////////////////////////\r
225         // Encapculates Cuda Stream. Provides interface for async coping.\r
226         // Passed to each function that supports async kernel execution.\r
227         // Reference counting is enabled\r
228 \r
229         class CV_EXPORTS Stream\r
230         {\r
231         public:\r
232             Stream();\r
233             ~Stream();\r
234 \r
235             Stream(const Stream&);\r
236             Stream& operator=(const Stream&);\r
237 \r
238             bool queryIfComplete();\r
239             void waitForCompletion();\r
240 \r
241             //! downloads asynchronously.\r
242             // Warning! cv::Mat must point to page locked memory (i.e. to CudaMem data or to its subMat)\r
243             void enqueueDownload(const GpuMat& src, CudaMem& dst);\r
244             void enqueueDownload(const GpuMat& src, Mat& dst);\r
245 \r
246             //! uploads asynchronously.\r
247             // Warning! cv::Mat must point to page locked memory (i.e. to CudaMem data or to its ROI)\r
248             void enqueueUpload(const CudaMem& src, GpuMat& dst);\r
249             void enqueueUpload(const Mat& src, GpuMat& dst);\r
250 \r
251             void enqueueCopy(const GpuMat& src, GpuMat& dst);\r
252 \r
253             void enqueueMemSet(GpuMat& src, Scalar val);\r
254             void enqueueMemSet(GpuMat& src, Scalar val, const GpuMat& mask);\r
255 \r
256             // converts matrix type, ex from float to uchar depending on type\r
257             void enqueueConvert(const GpuMat& src, GpuMat& dst, int type, double a = 1, double b = 0);\r
258 \r
259             static Stream& Null();\r
260 \r
261             operator bool() const;\r
262 \r
263         private:\r
264             void create();\r
265             void release();\r
266 \r
267             struct Impl;\r
268             Impl *impl;\r
269 \r
270             friend struct StreamAccessor;\r
271             \r
272             explicit Stream(Impl* impl);\r
273         };\r
274         \r
275 \r
276         //////////////////////////////// Filter Engine ////////////////////////////////\r
277 \r
278         /*!\r
279         The Base Class for 1D or Row-wise Filters\r
280 \r
281         This is the base class for linear or non-linear filters that process 1D data.\r
282         In particular, such filters are used for the "horizontal" filtering parts in separable filters.\r
283         */\r
284         class CV_EXPORTS BaseRowFilter_GPU\r
285         {\r
286         public:\r
287             BaseRowFilter_GPU(int ksize_, int anchor_) : ksize(ksize_), anchor(anchor_) {}\r
288             virtual ~BaseRowFilter_GPU() {}\r
289             virtual void operator()(const GpuMat& src, GpuMat& dst, Stream& stream = Stream::Null()) = 0;\r
290             int ksize, anchor;\r
291         };\r
292 \r
293         /*!\r
294         The Base Class for Column-wise Filters\r
295 \r
296         This is the base class for linear or non-linear filters that process columns of 2D arrays.\r
297         Such filters are used for the "vertical" filtering parts in separable filters.\r
298         */\r
299         class CV_EXPORTS BaseColumnFilter_GPU\r
300         {\r
301         public:\r
302             BaseColumnFilter_GPU(int ksize_, int anchor_) : ksize(ksize_), anchor(anchor_) {}\r
303             virtual ~BaseColumnFilter_GPU() {}\r
304             virtual void operator()(const GpuMat& src, GpuMat& dst, Stream& stream = Stream::Null()) = 0;\r
305             int ksize, anchor;\r
306         };\r
307 \r
308         /*!\r
309         The Base Class for Non-Separable 2D Filters.\r
310 \r
311         This is the base class for linear or non-linear 2D filters.\r
312         */\r
313         class CV_EXPORTS BaseFilter_GPU\r
314         {\r
315         public:\r
316             BaseFilter_GPU(const Size& ksize_, const Point& anchor_) : ksize(ksize_), anchor(anchor_) {}\r
317             virtual ~BaseFilter_GPU() {}\r
318             virtual void operator()(const GpuMat& src, GpuMat& dst, Stream& stream = Stream::Null()) = 0;\r
319             Size ksize;\r
320             Point anchor;\r
321         };\r
322 \r
323         /*!\r
324         The Base Class for Filter Engine.\r
325 \r
326         The class can be used to apply an arbitrary filtering operation to an image.\r
327         It contains all the necessary intermediate buffers.\r
328         */\r
329         class CV_EXPORTS FilterEngine_GPU\r
330         {\r
331         public:\r
332             virtual ~FilterEngine_GPU() {}\r
333 \r
334             virtual void apply(const GpuMat& src, GpuMat& dst, Rect roi = Rect(0,0,-1,-1), Stream& stream = Stream::Null()) = 0;\r
335         };\r
336 \r
337         //! returns the non-separable filter engine with the specified filter\r
338         CV_EXPORTS Ptr<FilterEngine_GPU> createFilter2D_GPU(const Ptr<BaseFilter_GPU>& filter2D, int srcType, int dstType);\r
339 \r
340         //! returns the separable filter engine with the specified filters\r
341         CV_EXPORTS Ptr<FilterEngine_GPU> createSeparableFilter_GPU(const Ptr<BaseRowFilter_GPU>& rowFilter,\r
342             const Ptr<BaseColumnFilter_GPU>& columnFilter, int srcType, int bufType, int dstType);\r
343 \r
344         //! returns horizontal 1D box filter\r
345         //! supports only CV_8UC1 source type and CV_32FC1 sum type\r
346         CV_EXPORTS Ptr<BaseRowFilter_GPU> getRowSumFilter_GPU(int srcType, int sumType, int ksize, int anchor = -1);\r
347 \r
348         //! returns vertical 1D box filter\r
349         //! supports only CV_8UC1 sum type and CV_32FC1 dst type\r
350         CV_EXPORTS Ptr<BaseColumnFilter_GPU> getColumnSumFilter_GPU(int sumType, int dstType, int ksize, int anchor = -1);\r
351 \r
352         //! returns 2D box filter\r
353         //! supports CV_8UC1 and CV_8UC4 source type, dst type must be the same as source type\r
354         CV_EXPORTS Ptr<BaseFilter_GPU> getBoxFilter_GPU(int srcType, int dstType, const Size& ksize, Point anchor = Point(-1, -1));\r
355 \r
356         //! returns box filter engine\r
357         CV_EXPORTS Ptr<FilterEngine_GPU> createBoxFilter_GPU(int srcType, int dstType, const Size& ksize,\r
358             const Point& anchor = Point(-1,-1));\r
359 \r
360         //! returns 2D morphological filter\r
361         //! only MORPH_ERODE and MORPH_DILATE are supported\r
362         //! supports CV_8UC1 and CV_8UC4 types\r
363         //! kernel must have CV_8UC1 type, one rows and cols == ksize.width * ksize.height\r
364         CV_EXPORTS Ptr<BaseFilter_GPU> getMorphologyFilter_GPU(int op, int type, const Mat& kernel, const Size& ksize,\r
365             Point anchor=Point(-1,-1));\r
366 \r
367         //! returns morphological filter engine. Only MORPH_ERODE and MORPH_DILATE are supported.\r
368         CV_EXPORTS Ptr<FilterEngine_GPU> createMorphologyFilter_GPU(int op, int type, const Mat& kernel,\r
369             const Point& anchor = Point(-1,-1), int iterations = 1);\r
370 \r
371         //! returns 2D filter with the specified kernel\r
372         //! supports CV_8UC1 and CV_8UC4 types\r
373         CV_EXPORTS Ptr<BaseFilter_GPU> getLinearFilter_GPU(int srcType, int dstType, const Mat& kernel, const Size& ksize,\r
374             Point anchor = Point(-1, -1));\r
375 \r
376         //! returns the non-separable linear filter engine\r
377         CV_EXPORTS Ptr<FilterEngine_GPU> createLinearFilter_GPU(int srcType, int dstType, const Mat& kernel,\r
378             const Point& anchor = Point(-1,-1));\r
379 \r
380         //! returns the primitive row filter with the specified kernel.\r
381         //! supports only CV_8UC1, CV_8UC4, CV_16SC1, CV_16SC2, CV_32SC1, CV_32FC1 source type.\r
382         //! there are two version of algorithm: NPP and OpenCV.\r
383         //! NPP calls when srcType == CV_8UC1 or srcType == CV_8UC4 and bufType == srcType,\r
384         //! otherwise calls OpenCV version.\r
385         //! NPP supports only BORDER_CONSTANT border type.\r
386         //! OpenCV version supports only CV_32F as buffer depth and\r
387         //! BORDER_REFLECT101, BORDER_REPLICATE and BORDER_CONSTANT border types.\r
388         CV_EXPORTS Ptr<BaseRowFilter_GPU> getLinearRowFilter_GPU(int srcType, int bufType, const Mat& rowKernel,\r
389             int anchor = -1, int borderType = BORDER_CONSTANT);\r
390 \r
391         //! returns the primitive column filter with the specified kernel.\r
392         //! supports only CV_8UC1, CV_8UC4, CV_16SC1, CV_16SC2, CV_32SC1, CV_32FC1 dst type.\r
393         //! there are two version of algorithm: NPP and OpenCV.\r
394         //! NPP calls when dstType == CV_8UC1 or dstType == CV_8UC4 and bufType == dstType,\r
395         //! otherwise calls OpenCV version.\r
396         //! NPP supports only BORDER_CONSTANT border type.\r
397         //! OpenCV version supports only CV_32F as buffer depth and\r
398         //! BORDER_REFLECT101, BORDER_REPLICATE and BORDER_CONSTANT border types.\r
399         CV_EXPORTS Ptr<BaseColumnFilter_GPU> getLinearColumnFilter_GPU(int bufType, int dstType, const Mat& columnKernel,\r
400             int anchor = -1, int borderType = BORDER_CONSTANT);\r
401 \r
402         //! returns the separable linear filter engine\r
403         CV_EXPORTS Ptr<FilterEngine_GPU> createSeparableLinearFilter_GPU(int srcType, int dstType, const Mat& rowKernel,\r
404             const Mat& columnKernel, const Point& anchor = Point(-1,-1), int rowBorderType = BORDER_DEFAULT,\r
405             int columnBorderType = -1);\r
406 \r
407         //! returns filter engine for the generalized Sobel operator\r
408         CV_EXPORTS Ptr<FilterEngine_GPU> createDerivFilter_GPU(int srcType, int dstType, int dx, int dy, int ksize,\r
409             int rowBorderType = BORDER_DEFAULT, int columnBorderType = -1);\r
410 \r
411         //! returns the Gaussian filter engine\r
412         CV_EXPORTS Ptr<FilterEngine_GPU> createGaussianFilter_GPU(int type, Size ksize, double sigma1, double sigma2 = 0,\r
413             int rowBorderType = BORDER_DEFAULT, int columnBorderType = -1);\r
414 \r
415         //! returns maximum filter\r
416         CV_EXPORTS Ptr<BaseFilter_GPU> getMaxFilter_GPU(int srcType, int dstType, const Size& ksize, Point anchor = Point(-1,-1));\r
417 \r
418         //! returns minimum filter\r
419         CV_EXPORTS Ptr<BaseFilter_GPU> getMinFilter_GPU(int srcType, int dstType, const Size& ksize, Point anchor = Point(-1,-1));\r
420 \r
421         //! smooths the image using the normalized box filter\r
422         //! supports CV_8UC1, CV_8UC4 types\r
423         CV_EXPORTS void boxFilter(const GpuMat& src, GpuMat& dst, int ddepth, Size ksize, Point anchor = Point(-1,-1), Stream& stream = Stream::Null());\r
424 \r
425         //! a synonym for normalized box filter\r
426         static inline void blur(const GpuMat& src, GpuMat& dst, Size ksize, Point anchor = Point(-1,-1), Stream& stream = Stream::Null()) { boxFilter(src, dst, -1, ksize, anchor, stream); }\r
427 \r
428         //! erodes the image (applies the local minimum operator)\r
429         CV_EXPORTS void erode( const GpuMat& src, GpuMat& dst, const Mat& kernel, Point anchor = Point(-1, -1), int iterations = 1, Stream& stream = Stream::Null());\r
430 \r
431         //! dilates the image (applies the local maximum operator)\r
432         CV_EXPORTS void dilate( const GpuMat& src, GpuMat& dst, const Mat& kernel, Point anchor = Point(-1, -1), int iterations = 1, Stream& stream = Stream::Null());\r
433 \r
434         //! applies an advanced morphological operation to the image\r
435         CV_EXPORTS void morphologyEx( const GpuMat& src, GpuMat& dst, int op, const Mat& kernel, Point anchor = Point(-1, -1), int iterations = 1, Stream& stream = Stream::Null());\r
436 \r
437         //! applies non-separable 2D linear filter to the image\r
438         CV_EXPORTS void filter2D(const GpuMat& src, GpuMat& dst, int ddepth, const Mat& kernel, Point anchor=Point(-1,-1), Stream& stream = Stream::Null());\r
439 \r
440         //! applies separable 2D linear filter to the image\r
441         CV_EXPORTS void sepFilter2D(const GpuMat& src, GpuMat& dst, int ddepth, const Mat& kernelX, const Mat& kernelY,\r
442             Point anchor = Point(-1,-1), int rowBorderType = BORDER_DEFAULT, int columnBorderType = -1, Stream& stream = Stream::Null());\r
443 \r
444         //! applies generalized Sobel operator to the image\r
445         CV_EXPORTS void Sobel(const GpuMat& src, GpuMat& dst, int ddepth, int dx, int dy, int ksize = 3, double scale = 1,\r
446             int rowBorderType = BORDER_DEFAULT, int columnBorderType = -1, Stream& stream = Stream::Null());\r
447 \r
448         //! applies the vertical or horizontal Scharr operator to the image\r
449         CV_EXPORTS void Scharr(const GpuMat& src, GpuMat& dst, int ddepth, int dx, int dy, double scale = 1,\r
450             int rowBorderType = BORDER_DEFAULT, int columnBorderType = -1, Stream& stream = Stream::Null());\r
451 \r
452         //! smooths the image using Gaussian filter.\r
453         CV_EXPORTS void GaussianBlur(const GpuMat& src, GpuMat& dst, Size ksize, double sigma1, double sigma2 = 0,\r
454             int rowBorderType = BORDER_DEFAULT, int columnBorderType = -1, Stream& stream = Stream::Null());\r
455 \r
456         //! applies Laplacian operator to the image\r
457         //! supports only ksize = 1 and ksize = 3\r
458         CV_EXPORTS void Laplacian(const GpuMat& src, GpuMat& dst, int ddepth, int ksize = 1, double scale = 1, Stream& stream = Stream::Null());\r
459 \r
460 \r
461         ////////////////////////////// Arithmetics ///////////////////////////////////\r
462 \r
463         //! transposes the matrix\r
464         //! supports matrix with element size = 1, 4 and 8 bytes (CV_8UC1, CV_8UC4, CV_16UC2, CV_32FC1, etc)\r
465         CV_EXPORTS void transpose(const GpuMat& src1, GpuMat& dst, Stream& stream = Stream::Null());\r
466 \r
467         //! reverses the order of the rows, columns or both in a matrix\r
468         //! supports CV_8UC1, CV_8UC4 types\r
469         CV_EXPORTS void flip(const GpuMat& a, GpuMat& b, int flipCode, Stream& stream = Stream::Null());\r
470 \r
471         //! transforms 8-bit unsigned integers using lookup table: dst(i)=lut(src(i))\r
472         //! destination array will have the depth type as lut and the same channels number as source\r
473         //! supports CV_8UC1, CV_8UC3 types\r
474         CV_EXPORTS void LUT(const GpuMat& src, const Mat& lut, GpuMat& dst, Stream& stream = Stream::Null());\r
475 \r
476         //! makes multi-channel array out of several single-channel arrays\r
477         CV_EXPORTS void merge(const GpuMat* src, size_t n, GpuMat& dst, Stream& stream = Stream::Null());\r
478 \r
479         //! makes multi-channel array out of several single-channel arrays\r
480         CV_EXPORTS void merge(const vector<GpuMat>& src, GpuMat& dst, Stream& stream = Stream::Null());\r
481 \r
482         //! copies each plane of a multi-channel array to a dedicated array\r
483         CV_EXPORTS void split(const GpuMat& src, GpuMat* dst, Stream& stream = Stream::Null());\r
484 \r
485         //! copies each plane of a multi-channel array to a dedicated array\r
486         CV_EXPORTS void split(const GpuMat& src, vector<GpuMat>& dst, Stream& stream = Stream::Null());\r
487 \r
488         //! computes magnitude of complex (x(i).re, x(i).im) vector\r
489         //! supports only CV_32FC2 type\r
490         CV_EXPORTS void magnitude(const GpuMat& x, GpuMat& magnitude, Stream& stream = Stream::Null());\r
491 \r
492         //! computes squared magnitude of complex (x(i).re, x(i).im) vector\r
493         //! supports only CV_32FC2 type\r
494         CV_EXPORTS void magnitudeSqr(const GpuMat& x, GpuMat& magnitude, Stream& stream = Stream::Null());\r
495 \r
496         //! computes magnitude of each (x(i), y(i)) vector\r
497         //! supports only floating-point source\r
498         CV_EXPORTS void magnitude(const GpuMat& x, const GpuMat& y, GpuMat& magnitude, Stream& stream = Stream::Null());\r
499 \r
500         //! computes squared magnitude of each (x(i), y(i)) vector\r
501         //! supports only floating-point source\r
502         CV_EXPORTS void magnitudeSqr(const GpuMat& x, const GpuMat& y, GpuMat& magnitude, Stream& stream = Stream::Null());\r
503 \r
504         //! computes angle (angle(i)) of each (x(i), y(i)) vector\r
505         //! supports only floating-point source\r
506         CV_EXPORTS void phase(const GpuMat& x, const GpuMat& y, GpuMat& angle, bool angleInDegrees = false, Stream& stream = Stream::Null());\r
507 \r
508         //! converts Cartesian coordinates to polar\r
509         //! supports only floating-point source\r
510         CV_EXPORTS void cartToPolar(const GpuMat& x, const GpuMat& y, GpuMat& magnitude, GpuMat& angle, bool angleInDegrees = false, Stream& stream = Stream::Null());\r
511 \r
512         //! converts polar coordinates to Cartesian\r
513         //! supports only floating-point source\r
514         CV_EXPORTS void polarToCart(const GpuMat& magnitude, const GpuMat& angle, GpuMat& x, GpuMat& y, bool angleInDegrees = false, Stream& stream = Stream::Null());\r
515 \r
516 \r
517         //////////////////////////// Per-element operations ////////////////////////////////////\r
518 \r
519         //! adds one matrix to another (c = a + b)\r
520         //! supports CV_8UC1, CV_8UC4, CV_32SC1, CV_32FC1 types\r
521         CV_EXPORTS void add(const GpuMat& a, const GpuMat& b, GpuMat& c, Stream& stream = Stream::Null());\r
522         //! adds scalar to a matrix (c = a + s)\r
523         //! supports CV_32FC1 and CV_32FC2 type\r
524         CV_EXPORTS void add(const GpuMat& a, const Scalar& sc, GpuMat& c, Stream& stream = Stream::Null());\r
525 \r
526         //! subtracts one matrix from another (c = a - b)\r
527         //! supports CV_8UC1, CV_8UC4, CV_32SC1, CV_32FC1 types\r
528         CV_EXPORTS void subtract(const GpuMat& a, const GpuMat& b, GpuMat& c, Stream& stream = Stream::Null());\r
529         //! subtracts scalar from a matrix (c = a - s)\r
530         //! supports CV_32FC1 and CV_32FC2 type\r
531         CV_EXPORTS void subtract(const GpuMat& a, const Scalar& sc, GpuMat& c, Stream& stream = Stream::Null());\r
532 \r
533         //! computes element-wise product of the two arrays (c = a * b)\r
534         //! supports CV_8UC1, CV_8UC4, CV_32SC1, CV_32FC1 types\r
535         CV_EXPORTS void multiply(const GpuMat& a, const GpuMat& b, GpuMat& c, Stream& stream = Stream::Null());\r
536         //! multiplies matrix to a scalar (c = a * s)\r
537         //! supports CV_32FC1 type\r
538         CV_EXPORTS void multiply(const GpuMat& a, const Scalar& sc, GpuMat& c, Stream& stream = Stream::Null());\r
539 \r
540         //! computes element-wise quotient of the two arrays (c = a / b)\r
541         //! supports CV_8UC1, CV_8UC4, CV_32SC1, CV_32FC1 types\r
542         CV_EXPORTS void divide(const GpuMat& a, const GpuMat& b, GpuMat& c, Stream& stream = Stream::Null());\r
543         //! computes element-wise quotient of matrix and scalar (c = a / s)\r
544         //! supports CV_32FC1 type\r
545         CV_EXPORTS void divide(const GpuMat& a, const Scalar& sc, GpuMat& c, Stream& stream = Stream::Null());\r
546 \r
547         //! computes exponent of each matrix element (b = e**a)\r
548         //! supports only CV_32FC1 type\r
549         CV_EXPORTS void exp(const GpuMat& a, GpuMat& b, Stream& stream = Stream::Null());\r
550         \r
551         //! computes power of each matrix element:\r
552         //    (dst(i,j) = pow(     src(i,j) , power), if src.type() is integer\r
553         //    (dst(i,j) = pow(fabs(src(i,j)), power), otherwise\r
554         //! supports all, except depth == CV_64F\r
555         CV_EXPORTS void pow(const GpuMat& src, double power, GpuMat& dst, Stream& stream = Stream::Null());\r
556 \r
557         //! computes natural logarithm of absolute value of each matrix element: b = log(abs(a))\r
558         //! supports only CV_32FC1 type\r
559         CV_EXPORTS void log(const GpuMat& a, GpuMat& b, Stream& stream = Stream::Null());\r
560 \r
561         //! computes element-wise absolute difference of two arrays (c = abs(a - b))\r
562         //! supports CV_8UC1, CV_8UC4, CV_32SC1, CV_32FC1 types\r
563         CV_EXPORTS void absdiff(const GpuMat& a, const GpuMat& b, GpuMat& c, Stream& stream = Stream::Null());\r
564         //! computes element-wise absolute difference of array and scalar (c = abs(a - s))\r
565         //! supports only CV_32FC1 type\r
566         CV_EXPORTS void absdiff(const GpuMat& a, const Scalar& s, GpuMat& c, Stream& stream = Stream::Null());\r
567 \r
568         //! compares elements of two arrays (c = a <cmpop> b)\r
569         //! supports CV_8UC4, CV_32FC1 types\r
570         CV_EXPORTS void compare(const GpuMat& a, const GpuMat& b, GpuMat& c, int cmpop, Stream& stream = Stream::Null());\r
571 \r
572         //! performs per-elements bit-wise inversion\r
573         CV_EXPORTS void bitwise_not(const GpuMat& src, GpuMat& dst, const GpuMat& mask=GpuMat(), Stream& stream = Stream::Null());\r
574 \r
575         //! calculates per-element bit-wise disjunction of two arrays\r
576         CV_EXPORTS void bitwise_or(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask=GpuMat(), Stream& stream = Stream::Null());\r
577 \r
578         //! calculates per-element bit-wise conjunction of two arrays\r
579         CV_EXPORTS void bitwise_and(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask=GpuMat(), Stream& stream = Stream::Null());\r
580 \r
581         //! calculates per-element bit-wise "exclusive or" operation\r
582         CV_EXPORTS void bitwise_xor(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask=GpuMat(), Stream& stream = Stream::Null());\r
583 \r
584         //! computes per-element minimum of two arrays (dst = min(src1, src2))\r
585         CV_EXPORTS void min(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream = Stream::Null());\r
586 \r
587         //! computes per-element minimum of array and scalar (dst = min(src1, src2))\r
588         CV_EXPORTS void min(const GpuMat& src1, double src2, GpuMat& dst, Stream& stream = Stream::Null());\r
589 \r
590         //! computes per-element maximum of two arrays (dst = max(src1, src2))\r
591         CV_EXPORTS void max(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream = Stream::Null());\r
592 \r
593         //! computes per-element maximum of array and scalar (dst = max(src1, src2))\r
594         CV_EXPORTS void max(const GpuMat& src1, double src2, GpuMat& dst, Stream& stream = Stream::Null());\r
595 \r
596 \r
597         ////////////////////////////// Image processing //////////////////////////////\r
598 \r
599         //! DST[x,y] = SRC[xmap[x,y],ymap[x,y]] with bilinear interpolation.\r
600         //! supports CV_32FC1 map type\r
601         CV_EXPORTS void remap(const GpuMat& src, GpuMat& dst, const GpuMat& xmap, const GpuMat& ymap,\r
602             int interpolation, int borderMode = BORDER_CONSTANT, const Scalar& borderValue = Scalar(), \r
603             Stream& stream = Stream::Null());\r
604 \r
605         //! Does mean shift filtering on GPU.\r
606         CV_EXPORTS void meanShiftFiltering(const GpuMat& src, GpuMat& dst, int sp, int sr,\r
607             TermCriteria criteria = TermCriteria(TermCriteria::MAX_ITER + TermCriteria::EPS, 5, 1));\r
608 \r
609         //! Does mean shift procedure on GPU.\r
610         CV_EXPORTS void meanShiftProc(const GpuMat& src, GpuMat& dstr, GpuMat& dstsp, int sp, int sr,\r
611             TermCriteria criteria = TermCriteria(TermCriteria::MAX_ITER + TermCriteria::EPS, 5, 1));\r
612 \r
613         //! Does mean shift segmentation with elimination of small regions.\r
614         CV_EXPORTS void meanShiftSegmentation(const GpuMat& src, Mat& dst, int sp, int sr, int minsize,\r
615             TermCriteria criteria = TermCriteria(TermCriteria::MAX_ITER + TermCriteria::EPS, 5, 1));\r
616 \r
617         //! Does coloring of disparity image: [0..ndisp) -> [0..240, 1, 1] in HSV.\r
618         //! Supported types of input disparity: CV_8U, CV_16S.\r
619         //! Output disparity has CV_8UC4 type in BGRA format (alpha = 255).\r
620         CV_EXPORTS void drawColorDisp(const GpuMat& src_disp, GpuMat& dst_disp, int ndisp, Stream& stream = Stream::Null());\r
621 \r
622         //! Reprojects disparity image to 3D space.\r
623         //! Supports CV_8U and CV_16S types of input disparity.\r
624         //! The output is a 4-channel floating-point (CV_32FC4) matrix.\r
625         //! Each element of this matrix will contain the 3D coordinates of the point (x,y,z,1), computed from the disparity map.\r
626         //! Q is the 4x4 perspective transformation matrix that can be obtained with cvStereoRectify.\r
627         CV_EXPORTS void reprojectImageTo3D(const GpuMat& disp, GpuMat& xyzw, const Mat& Q, Stream& stream = Stream::Null());\r
628 \r
629         //! converts image from one color space to another\r
630         CV_EXPORTS void cvtColor(const GpuMat& src, GpuMat& dst, int code, int dcn = 0, Stream& stream = Stream::Null());\r
631 \r
632         //! applies fixed threshold to the image\r
633         CV_EXPORTS double threshold(const GpuMat& src, GpuMat& dst, double thresh, double maxval, int type, Stream& stream = Stream::Null());\r
634 \r
635         //! resizes the image\r
636         //! Supports INTER_NEAREST, INTER_LINEAR\r
637         //! supports CV_8UC1, CV_8UC4 types\r
638         CV_EXPORTS void resize(const GpuMat& src, GpuMat& dst, Size dsize, double fx=0, double fy=0, int interpolation = INTER_LINEAR, Stream& stream = Stream::Null());\r
639 \r
640         //! warps the image using affine transformation\r
641         //! Supports INTER_NEAREST, INTER_LINEAR, INTER_CUBIC\r
642         CV_EXPORTS void warpAffine(const GpuMat& src, GpuMat& dst, const Mat& M, Size dsize, int flags = INTER_LINEAR, Stream& stream = Stream::Null());\r
643 \r
644         //! warps the image using perspective transformation\r
645         //! Supports INTER_NEAREST, INTER_LINEAR, INTER_CUBIC\r
646         CV_EXPORTS void warpPerspective(const GpuMat& src, GpuMat& dst, const Mat& M, Size dsize, int flags = INTER_LINEAR, Stream& stream = Stream::Null());\r
647 \r
648         //! builds plane warping maps\r
649         CV_EXPORTS void buildWarpPlaneMaps(Size src_size, Rect dst_roi, const Mat& R, double f, double s, double dist,\r
650                                            GpuMat& map_x, GpuMat& map_y, Stream& stream = Stream::Null());\r
651 \r
652         //! builds cylindrical warping maps\r
653         CV_EXPORTS void buildWarpCylindricalMaps(Size src_size, Rect dst_roi, const Mat& R, double f, double s,\r
654                                                  GpuMat& map_x, GpuMat& map_y, Stream& stream = Stream::Null());\r
655 \r
656         //! builds spherical warping maps\r
657         CV_EXPORTS void buildWarpSphericalMaps(Size src_size, Rect dst_roi, const Mat& R, double f, double s,\r
658                                                GpuMat& map_x, GpuMat& map_y, Stream& stream = Stream::Null());\r
659 \r
660         //! rotate 8bit single or four channel image\r
661         //! Supports INTER_NEAREST, INTER_LINEAR, INTER_CUBIC\r
662         //! supports CV_8UC1, CV_8UC4 types\r
663         CV_EXPORTS void rotate(const GpuMat& src, GpuMat& dst, Size dsize, double angle, double xShift = 0, double yShift = 0, int interpolation = INTER_LINEAR, Stream& stream = Stream::Null());\r
664 \r
665         //! copies 2D array to a larger destination array and pads borders with user-specifiable constant\r
666         //! supports CV_8UC1, CV_8UC4, CV_32SC1 and CV_32FC1 types\r
667         CV_EXPORTS void copyMakeBorder(const GpuMat& src, GpuMat& dst, int top, int bottom, int left, int right, const Scalar& value = Scalar(), Stream& stream = Stream::Null());\r
668 \r
669         //! computes the integral image\r
670         //! sum will have CV_32S type, but will contain unsigned int values\r
671         //! supports only CV_8UC1 source type\r
672         CV_EXPORTS void integral(const GpuMat& src, GpuMat& sum, Stream& stream = Stream::Null());\r
673 \r
674         //! buffered version\r
675         CV_EXPORTS void integralBuffered(const GpuMat& src, GpuMat& sum, GpuMat& buffer, Stream& stream = Stream::Null());\r
676 \r
677         //! computes the integral image and integral for the squared image\r
678         //! sum will have CV_32S type, sqsum - CV32F type\r
679         //! supports only CV_8UC1 source type\r
680         CV_EXPORTS void integral(const GpuMat& src, GpuMat& sum, GpuMat& sqsum, Stream& stream = Stream::Null());\r
681 \r
682         //! computes squared integral image\r
683         //! result matrix will have 64F type, but will contain 64U values\r
684         //! supports source images of 8UC1 type only\r
685         CV_EXPORTS void sqrIntegral(const GpuMat& src, GpuMat& sqsum, Stream& stream = Stream::Null());\r
686 \r
687         //! computes vertical sum, supports only CV_32FC1 images\r
688         CV_EXPORTS void columnSum(const GpuMat& src, GpuMat& sum);\r
689 \r
690         //! computes the standard deviation of integral images\r
691         //! supports only CV_32SC1 source type and CV_32FC1 sqr type\r
692         //! output will have CV_32FC1 type\r
693         CV_EXPORTS void rectStdDev(const GpuMat& src, const GpuMat& sqr, GpuMat& dst, const Rect& rect, Stream& stream = Stream::Null());\r
694 \r
695         //! computes Harris cornerness criteria at each image pixel\r
696         CV_EXPORTS void cornerHarris(const GpuMat& src, GpuMat& dst, int blockSize, int ksize, double k, int borderType=BORDER_REFLECT101);\r
697         CV_EXPORTS void cornerHarris(const GpuMat& src, GpuMat& dst, GpuMat& Dx, GpuMat& Dy, int blockSize, int ksize, double k, int borderType=BORDER_REFLECT101);\r
698 \r
699         //! computes minimum eigen value of 2x2 derivative covariation matrix at each pixel - the cornerness criteria\r
700         CV_EXPORTS void cornerMinEigenVal(const GpuMat& src, GpuMat& dst, int blockSize, int ksize, int borderType=BORDER_REFLECT101);\r
701         CV_EXPORTS void cornerMinEigenVal(const GpuMat& src, GpuMat& dst, GpuMat& Dx, GpuMat& Dy, int blockSize, int ksize, int borderType=BORDER_REFLECT101);\r
702 \r
703         //! performs per-element multiplication of two full (not packed) Fourier spectrums\r
704         //! supports 32FC2 matrixes only (interleaved format)\r
705         CV_EXPORTS void mulSpectrums(const GpuMat& a, const GpuMat& b, GpuMat& c, int flags, bool conjB=false);\r
706 \r
707         //! performs per-element multiplication of two full (not packed) Fourier spectrums\r
708         //! supports 32FC2 matrixes only (interleaved format)\r
709         CV_EXPORTS void mulAndScaleSpectrums(const GpuMat& a, const GpuMat& b, GpuMat& c, int flags, \r
710                                              float scale, bool conjB=false);\r
711 \r
712         //! Performs a forward or inverse discrete Fourier transform (1D or 2D) of floating point matrix.\r
713         //! Param dft_size is the size of DFT transform.\r
714         //! \r
715         //! If the source matrix is not continous, then additional copy will be done,\r
716         //! so to avoid copying ensure the source matrix is continous one. If you want to use\r
717         //! preallocated output ensure it is continuous too, otherwise it will be reallocated.\r
718         //!\r
719         //! Being implemented via CUFFT real-to-complex transform result contains only non-redundant values\r
720         //! in CUFFT's format. Result as full complex matrix for such kind of transform cannot be retrieved.\r
721         //!\r
722         //! For complex-to-real transform it is assumed that the source matrix is packed in CUFFT's format.\r
723         CV_EXPORTS void dft(const GpuMat& src, GpuMat& dst, Size dft_size, int flags=0);\r
724 \r
725         //! computes convolution (or cross-correlation) of two images using discrete Fourier transform\r
726         //! supports source images of 32FC1 type only\r
727         //! result matrix will have 32FC1 type\r
728         CV_EXPORTS void convolve(const GpuMat& image, const GpuMat& templ, GpuMat& result, \r
729                                  bool ccorr=false);\r
730 \r
731         struct CV_EXPORTS ConvolveBuf;\r
732 \r
733         //! buffered version\r
734         CV_EXPORTS void convolve(const GpuMat& image, const GpuMat& templ, GpuMat& result, \r
735                                  bool ccorr, ConvolveBuf& buf);\r
736 \r
737         struct CV_EXPORTS ConvolveBuf\r
738         {\r
739             ConvolveBuf() {}\r
740             ConvolveBuf(Size image_size, Size templ_size) \r
741                 { create(image_size, templ_size); }\r
742             void create(Size image_size, Size templ_size);\r
743 \r
744         private:\r
745             static Size estimateBlockSize(Size result_size, Size templ_size);\r
746             friend void convolve(const GpuMat&, const GpuMat&, GpuMat&, bool, ConvolveBuf&);\r
747 \r
748             Size result_size;\r
749             Size block_size;\r
750             Size dft_size;\r
751             int spect_len;\r
752 \r
753             GpuMat image_spect, templ_spect, result_spect;\r
754             GpuMat image_block, templ_block, result_data;\r
755         };\r
756 \r
757         //! computes the proximity map for the raster template and the image where the template is searched for\r
758         CV_EXPORTS void matchTemplate(const GpuMat& image, const GpuMat& templ, GpuMat& result, int method);\r
759 \r
760         //! downsamples image\r
761         CV_EXPORTS void downsample(const GpuMat& src, GpuMat& dst, Stream& stream = Stream::Null());\r
762 \r
763         //! upsamples image\r
764         CV_EXPORTS void upsample(const GpuMat& src, GpuMat &dst, Stream& stream = Stream::Null());\r
765 \r
766         //! smoothes the source image and downsamples it\r
767         CV_EXPORTS void pyrDown(const GpuMat& src, GpuMat& dst, int borderType = BORDER_DEFAULT, Stream& stream = Stream::Null());\r
768 \r
769         //! upsamples the source image and then smoothes it\r
770         CV_EXPORTS void pyrUp(const GpuMat& src, GpuMat& dst, int borderType = BORDER_DEFAULT, Stream& stream = Stream::Null());\r
771 \r
772         //! performs linear blending of two images\r
773         //! to avoid accuracy errors sum of weigths shouldn't be very close to zero\r
774         CV_EXPORTS void blendLinear(const GpuMat& img1, const GpuMat& img2, const GpuMat& weights1, const GpuMat& weights2, \r
775             GpuMat& result, Stream& stream = Stream::Null());\r
776 \r
777         \r
778         struct CV_EXPORTS CannyBuf;\r
779         \r
780         CV_EXPORTS void Canny(const GpuMat& image, GpuMat& edges, double low_thresh, double high_thresh, int apperture_size = 3, bool L2gradient = false);\r
781         CV_EXPORTS void Canny(const GpuMat& image, CannyBuf& buf, GpuMat& edges, double low_thresh, double high_thresh, int apperture_size = 3, bool L2gradient = false);\r
782         CV_EXPORTS void Canny(const GpuMat& dx, const GpuMat& dy, GpuMat& edges, double low_thresh, double high_thresh, bool L2gradient = false);\r
783         CV_EXPORTS void Canny(const GpuMat& dx, const GpuMat& dy, CannyBuf& buf, GpuMat& edges, double low_thresh, double high_thresh, bool L2gradient = false);\r
784 \r
785         struct CV_EXPORTS CannyBuf\r
786         {\r
787             CannyBuf() {}\r
788             explicit CannyBuf(const Size& image_size, int apperture_size = 3) {create(image_size, apperture_size);}\r
789             CannyBuf(const GpuMat& dx_, const GpuMat& dy_);\r
790 \r
791             void create(const Size& image_size, int apperture_size = 3);\r
792             \r
793             void release();\r
794 \r
795             GpuMat dx, dy;\r
796             GpuMat dx_buf, dy_buf;\r
797             GpuMat edgeBuf;\r
798             GpuMat trackBuf1, trackBuf2;\r
799             Ptr<FilterEngine_GPU> filterDX, filterDY;\r
800         };\r
801 \r
802         ////////////////////////////// Matrix reductions //////////////////////////////\r
803 \r
804         //! computes mean value and standard deviation of all or selected array elements\r
805         //! supports only CV_8UC1 type\r
806         CV_EXPORTS void meanStdDev(const GpuMat& mtx, Scalar& mean, Scalar& stddev);\r
807 \r
808         //! computes norm of array\r
809         //! supports NORM_INF, NORM_L1, NORM_L2\r
810         //! supports all matrices except 64F\r
811         CV_EXPORTS double norm(const GpuMat& src1, int normType=NORM_L2);\r
812 \r
813         //! computes norm of array\r
814         //! supports NORM_INF, NORM_L1, NORM_L2\r
815         //! supports all matrices except 64F\r
816         CV_EXPORTS double norm(const GpuMat& src1, int normType, GpuMat& buf);\r
817 \r
818         //! computes norm of the difference between two arrays\r
819         //! supports NORM_INF, NORM_L1, NORM_L2\r
820         //! supports only CV_8UC1 type\r
821         CV_EXPORTS double norm(const GpuMat& src1, const GpuMat& src2, int normType=NORM_L2);\r
822 \r
823         //! computes sum of array elements\r
824         //! supports only single channel images\r
825         CV_EXPORTS Scalar sum(const GpuMat& src);\r
826 \r
827         //! computes sum of array elements\r
828         //! supports only single channel images\r
829         CV_EXPORTS Scalar sum(const GpuMat& src, GpuMat& buf);\r
830 \r
831         //! computes sum of array elements absolute values\r
832         //! supports only single channel images\r
833         CV_EXPORTS Scalar absSum(const GpuMat& src);\r
834 \r
835         //! computes sum of array elements absolute values\r
836         //! supports only single channel images\r
837         CV_EXPORTS Scalar absSum(const GpuMat& src, GpuMat& buf);\r
838 \r
839         //! computes squared sum of array elements\r
840         //! supports only single channel images\r
841         CV_EXPORTS Scalar sqrSum(const GpuMat& src);\r
842 \r
843         //! computes squared sum of array elements\r
844         //! supports only single channel images\r
845         CV_EXPORTS Scalar sqrSum(const GpuMat& src, GpuMat& buf);\r
846 \r
847         //! finds global minimum and maximum array elements and returns their values\r
848         CV_EXPORTS void minMax(const GpuMat& src, double* minVal, double* maxVal=0, const GpuMat& mask=GpuMat());\r
849 \r
850         //! finds global minimum and maximum array elements and returns their values\r
851         CV_EXPORTS void minMax(const GpuMat& src, double* minVal, double* maxVal, const GpuMat& mask, GpuMat& buf);\r
852 \r
853         //! finds global minimum and maximum array elements and returns their values with locations\r
854         CV_EXPORTS void minMaxLoc(const GpuMat& src, double* minVal, double* maxVal=0, Point* minLoc=0, Point* maxLoc=0,\r
855                                   const GpuMat& mask=GpuMat());\r
856 \r
857         //! finds global minimum and maximum array elements and returns their values with locations\r
858         CV_EXPORTS void minMaxLoc(const GpuMat& src, double* minVal, double* maxVal, Point* minLoc, Point* maxLoc,\r
859                                   const GpuMat& mask, GpuMat& valbuf, GpuMat& locbuf);\r
860 \r
861         //! counts non-zero array elements\r
862         CV_EXPORTS int countNonZero(const GpuMat& src);\r
863 \r
864         //! counts non-zero array elements\r
865         CV_EXPORTS int countNonZero(const GpuMat& src, GpuMat& buf);\r
866 \r
867 \r
868         ///////////////////////////// Calibration 3D //////////////////////////////////\r
869 \r
870         CV_EXPORTS void transformPoints(const GpuMat& src, const Mat& rvec, const Mat& tvec,\r
871                                         GpuMat& dst, Stream& stream = Stream::Null());\r
872 \r
873         CV_EXPORTS void projectPoints(const GpuMat& src, const Mat& rvec, const Mat& tvec,\r
874                                       const Mat& camera_mat, const Mat& dist_coef, GpuMat& dst, \r
875                                       Stream& stream = Stream::Null());\r
876 \r
877         CV_EXPORTS void solvePnPRansac(const Mat& object, const Mat& image, const Mat& camera_mat,\r
878                                        const Mat& dist_coef, Mat& rvec, Mat& tvec, bool use_extrinsic_guess=false,\r
879                                        int num_iters=100, float max_dist=8.0, int min_inlier_count=100, \r
880                                        vector<int>* inliers=NULL);\r
881 \r
882         //////////////////////////////// Image Labeling ////////////////////////////////\r
883 \r
884         //!performs labeling via graph cuts\r
885         CV_EXPORTS void graphcut(GpuMat& terminals, GpuMat& leftTransp, GpuMat& rightTransp, GpuMat& top, GpuMat& bottom, GpuMat& labels, GpuMat& buf, Stream& stream = Stream::Null());\r
886 \r
887         ////////////////////////////////// Histograms //////////////////////////////////\r
888 \r
889         //! Compute levels with even distribution. levels will have 1 row and nLevels cols and CV_32SC1 type.\r
890         CV_EXPORTS void evenLevels(GpuMat& levels, int nLevels, int lowerLevel, int upperLevel);\r
891         //! Calculates histogram with evenly distributed bins for signle channel source.\r
892         //! Supports CV_8UC1, CV_16UC1 and CV_16SC1 source types.\r
893         //! Output hist will have one row and histSize cols and CV_32SC1 type.\r
894         CV_EXPORTS void histEven(const GpuMat& src, GpuMat& hist, int histSize, int lowerLevel, int upperLevel, Stream& stream = Stream::Null());\r
895         CV_EXPORTS void histEven(const GpuMat& src, GpuMat& hist, GpuMat& buf, int histSize, int lowerLevel, int upperLevel, Stream& stream = Stream::Null());\r
896         //! Calculates histogram with evenly distributed bins for four-channel source.\r
897         //! All channels of source are processed separately.\r
898         //! Supports CV_8UC4, CV_16UC4 and CV_16SC4 source types.\r
899         //! Output hist[i] will have one row and histSize[i] cols and CV_32SC1 type.\r
900         CV_EXPORTS void histEven(const GpuMat& src, GpuMat hist[4], int histSize[4], int lowerLevel[4], int upperLevel[4], Stream& stream = Stream::Null());\r
901         CV_EXPORTS void histEven(const GpuMat& src, GpuMat hist[4], GpuMat& buf, int histSize[4], int lowerLevel[4], int upperLevel[4], Stream& stream = Stream::Null());\r
902         //! Calculates histogram with bins determined by levels array.\r
903         //! levels must have one row and CV_32SC1 type if source has integer type or CV_32FC1 otherwise.\r
904         //! Supports CV_8UC1, CV_16UC1, CV_16SC1 and CV_32FC1 source types.\r
905         //! Output hist will have one row and (levels.cols-1) cols and CV_32SC1 type.\r
906         CV_EXPORTS void histRange(const GpuMat& src, GpuMat& hist, const GpuMat& levels, Stream& stream = Stream::Null());\r
907         CV_EXPORTS void histRange(const GpuMat& src, GpuMat& hist, const GpuMat& levels, GpuMat& buf, Stream& stream = Stream::Null());\r
908         //! Calculates histogram with bins determined by levels array.\r
909         //! All levels must have one row and CV_32SC1 type if source has integer type or CV_32FC1 otherwise.\r
910         //! All channels of source are processed separately.\r
911         //! Supports CV_8UC4, CV_16UC4, CV_16SC4 and CV_32FC4 source types.\r
912         //! Output hist[i] will have one row and (levels[i].cols-1) cols and CV_32SC1 type.\r
913         CV_EXPORTS void histRange(const GpuMat& src, GpuMat hist[4], const GpuMat levels[4], Stream& stream = Stream::Null());\r
914         CV_EXPORTS void histRange(const GpuMat& src, GpuMat hist[4], const GpuMat levels[4], GpuMat& buf, Stream& stream = Stream::Null());\r
915         \r
916         //! Calculates histogram for 8u one channel image\r
917         //! Output hist will have one row, 256 cols and CV32SC1 type.\r
918         CV_EXPORTS void calcHist(const GpuMat& src, GpuMat& hist, Stream& stream = Stream::Null());\r
919         CV_EXPORTS void calcHist(const GpuMat& src, GpuMat& hist, GpuMat& buf, Stream& stream = Stream::Null());\r
920         \r
921         //! normalizes the grayscale image brightness and contrast by normalizing its histogram\r
922         CV_EXPORTS void equalizeHist(const GpuMat& src, GpuMat& dst, Stream& stream = Stream::Null());\r
923         CV_EXPORTS void equalizeHist(const GpuMat& src, GpuMat& dst, GpuMat& hist, Stream& stream = Stream::Null());\r
924         CV_EXPORTS void equalizeHist(const GpuMat& src, GpuMat& dst, GpuMat& hist, GpuMat& buf, Stream& stream = Stream::Null());\r
925 \r
926         //////////////////////////////// StereoBM_GPU ////////////////////////////////\r
927 \r
928         class CV_EXPORTS StereoBM_GPU\r
929         {\r
930         public:\r
931             enum { BASIC_PRESET = 0, PREFILTER_XSOBEL = 1 };\r
932 \r
933             enum { DEFAULT_NDISP = 64, DEFAULT_WINSZ = 19 };\r
934 \r
935             //! the default constructor\r
936             StereoBM_GPU();\r
937             //! the full constructor taking the camera-specific preset, number of disparities and the SAD window size. ndisparities must be multiple of 8.\r
938             StereoBM_GPU(int preset, int ndisparities = DEFAULT_NDISP, int winSize = DEFAULT_WINSZ);\r
939 \r
940             //! the stereo correspondence operator. Finds the disparity for the specified rectified stereo pair\r
941             //! Output disparity has CV_8U type.\r
942             void operator() ( const GpuMat& left, const GpuMat& right, GpuMat& disparity, Stream& stream = Stream::Null());\r
943 \r
944             //! Some heuristics that tries to estmate\r
945             // if current GPU will be faster than CPU in this algorithm.\r
946             // It queries current active device.\r
947             static bool checkIfGpuCallReasonable();\r
948 \r
949             int preset;\r
950             int ndisp;\r
951             int winSize;\r
952 \r
953             // If avergeTexThreshold  == 0 => post procesing is disabled\r
954             // If avergeTexThreshold != 0 then disparity is set 0 in each point (x,y) where for left image\r
955             // SumOfHorizontalGradiensInWindow(x, y, winSize) < (winSize * winSize) * avergeTexThreshold\r
956             // i.e. input left image is low textured.\r
957             float avergeTexThreshold;\r
958         private:\r
959             GpuMat minSSD, leBuf, riBuf;\r
960         };\r
961 \r
962         ////////////////////////// StereoBeliefPropagation ///////////////////////////\r
963         // "Efficient Belief Propagation for Early Vision"\r
964         // P.Felzenszwalb\r
965 \r
966         class CV_EXPORTS StereoBeliefPropagation\r
967         {\r
968         public:\r
969             enum { DEFAULT_NDISP  = 64 };\r
970             enum { DEFAULT_ITERS  = 5  };\r
971             enum { DEFAULT_LEVELS = 5  };\r
972 \r
973             static void estimateRecommendedParams(int width, int height, int& ndisp, int& iters, int& levels);\r
974 \r
975             //! the default constructor\r
976             explicit StereoBeliefPropagation(int ndisp  = DEFAULT_NDISP,\r
977                 int iters  = DEFAULT_ITERS,\r
978                 int levels = DEFAULT_LEVELS,\r
979                 int msg_type = CV_32F);\r
980 \r
981             //! the full constructor taking the number of disparities, number of BP iterations on each level,\r
982             //! number of levels, truncation of data cost, data weight,\r
983             //! truncation of discontinuity cost and discontinuity single jump\r
984             //! DataTerm = data_weight * min(fabs(I2-I1), max_data_term)\r
985             //! DiscTerm = min(disc_single_jump * fabs(f1-f2), max_disc_term)\r
986             //! please see paper for more details\r
987             StereoBeliefPropagation(int ndisp, int iters, int levels,\r
988                 float max_data_term, float data_weight,\r
989                 float max_disc_term, float disc_single_jump,\r
990                 int msg_type = CV_32F);\r
991 \r
992             //! the stereo correspondence operator. Finds the disparity for the specified rectified stereo pair,\r
993             //! if disparity is empty output type will be CV_16S else output type will be disparity.type().\r
994             void operator()(const GpuMat& left, const GpuMat& right, GpuMat& disparity, Stream& stream = Stream::Null());\r
995 \r
996 \r
997             //! version for user specified data term\r
998             void operator()(const GpuMat& data, GpuMat& disparity, Stream& stream = Stream::Null());\r
999 \r
1000             int ndisp;\r
1001 \r
1002             int iters;\r
1003             int levels;\r
1004 \r
1005             float max_data_term;\r
1006             float data_weight;\r
1007             float max_disc_term;\r
1008             float disc_single_jump;\r
1009 \r
1010             int msg_type;\r
1011         private:\r
1012             GpuMat u, d, l, r, u2, d2, l2, r2;\r
1013             std::vector<GpuMat> datas;\r
1014             GpuMat out;\r
1015         };\r
1016 \r
1017         /////////////////////////// StereoConstantSpaceBP ///////////////////////////\r
1018         // "A Constant-Space Belief Propagation Algorithm for Stereo Matching"\r
1019         // Qingxiong Yang, Liang Wang, Narendra Ahuja\r
1020         // http://vision.ai.uiuc.edu/~qyang6/\r
1021 \r
1022         class CV_EXPORTS StereoConstantSpaceBP\r
1023         {\r
1024         public:\r
1025             enum { DEFAULT_NDISP    = 128 };\r
1026             enum { DEFAULT_ITERS    = 8   };\r
1027             enum { DEFAULT_LEVELS   = 4   };\r
1028             enum { DEFAULT_NR_PLANE = 4   };\r
1029 \r
1030             static void estimateRecommendedParams(int width, int height, int& ndisp, int& iters, int& levels, int& nr_plane);\r
1031 \r
1032             //! the default constructor\r
1033             explicit StereoConstantSpaceBP(int ndisp    = DEFAULT_NDISP,\r
1034                 int iters    = DEFAULT_ITERS,\r
1035                 int levels   = DEFAULT_LEVELS,\r
1036                 int nr_plane = DEFAULT_NR_PLANE,\r
1037                 int msg_type = CV_32F);\r
1038 \r
1039             //! the full constructor taking the number of disparities, number of BP iterations on each level,\r
1040             //! number of levels, number of active disparity on the first level, truncation of data cost, data weight,\r
1041             //! truncation of discontinuity cost, discontinuity single jump and minimum disparity threshold\r
1042             StereoConstantSpaceBP(int ndisp, int iters, int levels, int nr_plane,\r
1043                 float max_data_term, float data_weight, float max_disc_term, float disc_single_jump,\r
1044                 int min_disp_th = 0,\r
1045                 int msg_type = CV_32F);\r
1046 \r
1047             //! the stereo correspondence operator. Finds the disparity for the specified rectified stereo pair,\r
1048             //! if disparity is empty output type will be CV_16S else output type will be disparity.type().\r
1049             void operator()(const GpuMat& left, const GpuMat& right, GpuMat& disparity, Stream& stream = Stream::Null());\r
1050 \r
1051             int ndisp;\r
1052 \r
1053             int iters;\r
1054             int levels;\r
1055 \r
1056             int nr_plane;\r
1057 \r
1058             float max_data_term;\r
1059             float data_weight;\r
1060             float max_disc_term;\r
1061             float disc_single_jump;\r
1062 \r
1063             int min_disp_th;\r
1064 \r
1065             int msg_type;\r
1066 \r
1067             bool use_local_init_data_cost;\r
1068         private:\r
1069             GpuMat u[2], d[2], l[2], r[2];\r
1070             GpuMat disp_selected_pyr[2];\r
1071 \r
1072             GpuMat data_cost;\r
1073             GpuMat data_cost_selected;\r
1074 \r
1075             GpuMat temp;\r
1076 \r
1077             GpuMat out;\r
1078         };\r
1079 \r
1080         /////////////////////////// DisparityBilateralFilter ///////////////////////////\r
1081         // Disparity map refinement using joint bilateral filtering given a single color image.\r
1082         // Qingxiong Yang, Liang Wang, Narendra Ahuja\r
1083         // http://vision.ai.uiuc.edu/~qyang6/\r
1084 \r
1085         class CV_EXPORTS DisparityBilateralFilter\r
1086         {\r
1087         public:\r
1088             enum { DEFAULT_NDISP  = 64 };\r
1089             enum { DEFAULT_RADIUS = 3 };\r
1090             enum { DEFAULT_ITERS  = 1 };\r
1091 \r
1092             //! the default constructor\r
1093             explicit DisparityBilateralFilter(int ndisp = DEFAULT_NDISP, int radius = DEFAULT_RADIUS, int iters = DEFAULT_ITERS);\r
1094 \r
1095             //! the full constructor taking the number of disparities, filter radius,\r
1096             //! number of iterations, truncation of data continuity, truncation of disparity continuity\r
1097             //! and filter range sigma\r
1098             DisparityBilateralFilter(int ndisp, int radius, int iters, float edge_threshold, float max_disc_threshold, float sigma_range);\r
1099 \r
1100             //! the disparity map refinement operator. Refine disparity map using joint bilateral filtering given a single color image.\r
1101             //! disparity must have CV_8U or CV_16S type, image must have CV_8UC1 or CV_8UC3 type.\r
1102             void operator()(const GpuMat& disparity, const GpuMat& image, GpuMat& dst, Stream& stream = Stream::Null());\r
1103 \r
1104         private:\r
1105             int ndisp;\r
1106             int radius;\r
1107             int iters;\r
1108 \r
1109             float edge_threshold;\r
1110             float max_disc_threshold;\r
1111             float sigma_range;\r
1112 \r
1113             GpuMat table_color;\r
1114             GpuMat table_space;\r
1115         };\r
1116 \r
1117 \r
1118         //////////////// HOG (Histogram-of-Oriented-Gradients) Descriptor and Object Detector //////////////\r
1119 \r
1120         struct CV_EXPORTS HOGDescriptor\r
1121         {\r
1122             enum { DEFAULT_WIN_SIGMA = -1 };\r
1123             enum { DEFAULT_NLEVELS = 64 };\r
1124             enum { DESCR_FORMAT_ROW_BY_ROW, DESCR_FORMAT_COL_BY_COL };\r
1125 \r
1126             HOGDescriptor(Size win_size=Size(64, 128), Size block_size=Size(16, 16),\r
1127                           Size block_stride=Size(8, 8), Size cell_size=Size(8, 8),\r
1128                           int nbins=9, double win_sigma=DEFAULT_WIN_SIGMA,\r
1129                           double threshold_L2hys=0.2, bool gamma_correction=true,\r
1130                           int nlevels=DEFAULT_NLEVELS);\r
1131 \r
1132             size_t getDescriptorSize() const;\r
1133             size_t getBlockHistogramSize() const;\r
1134 \r
1135             void setSVMDetector(const vector<float>& detector);\r
1136 \r
1137             static vector<float> getDefaultPeopleDetector();\r
1138             static vector<float> getPeopleDetector48x96();\r
1139             static vector<float> getPeopleDetector64x128();\r
1140 \r
1141             void detect(const GpuMat& img, vector<Point>& found_locations, \r
1142                         double hit_threshold=0, Size win_stride=Size(), \r
1143                         Size padding=Size());\r
1144 \r
1145             void detectMultiScale(const GpuMat& img, vector<Rect>& found_locations,\r
1146                                   double hit_threshold=0, Size win_stride=Size(), \r
1147                                   Size padding=Size(), double scale0=1.05, \r
1148                                   int group_threshold=2);\r
1149 \r
1150             void getDescriptors(const GpuMat& img, Size win_stride, \r
1151                                 GpuMat& descriptors,\r
1152                                 int descr_format=DESCR_FORMAT_COL_BY_COL);\r
1153 \r
1154             Size win_size;\r
1155             Size block_size;\r
1156             Size block_stride;\r
1157             Size cell_size;\r
1158             int nbins;\r
1159             double win_sigma;\r
1160             double threshold_L2hys;\r
1161             bool gamma_correction;\r
1162             int nlevels;\r
1163 \r
1164         protected:\r
1165             void computeBlockHistograms(const GpuMat& img);\r
1166             void computeGradient(const GpuMat& img, GpuMat& grad, GpuMat& qangle);\r
1167 \r
1168             double getWinSigma() const;\r
1169             bool checkDetectorSize() const;\r
1170 \r
1171             static int numPartsWithin(int size, int part_size, int stride);\r
1172             static Size numPartsWithin(Size size, Size part_size, Size stride);\r
1173 \r
1174             // Coefficients of the separating plane\r
1175             float free_coef;\r
1176             GpuMat detector;\r
1177 \r
1178             // Results of the last classification step\r
1179             GpuMat labels, labels_buf;\r
1180             Mat labels_host;\r
1181 \r
1182             // Results of the last histogram evaluation step\r
1183             GpuMat block_hists, block_hists_buf;\r
1184 \r
1185             // Gradients conputation results\r
1186             GpuMat grad, qangle, grad_buf, qangle_buf;\r
1187 \r
1188                         // returns subbuffer with required size, reallocates buffer if nessesary.\r
1189                         static GpuMat getBuffer(const Size& sz, int type, GpuMat& buf);\r
1190                         static GpuMat getBuffer(int rows, int cols, int type, GpuMat& buf);\r
1191 \r
1192                         std::vector<GpuMat> image_scales;\r
1193         };\r
1194 \r
1195 \r
1196         ////////////////////////////////// BruteForceMatcher //////////////////////////////////\r
1197 \r
1198         class CV_EXPORTS BruteForceMatcher_GPU_base\r
1199         {\r
1200         public:\r
1201             enum DistType {L1Dist = 0, L2Dist, HammingDist};\r
1202 \r
1203             explicit BruteForceMatcher_GPU_base(DistType distType = L2Dist);\r
1204 \r
1205             // Add descriptors to train descriptor collection.\r
1206             void add(const std::vector<GpuMat>& descCollection);\r
1207 \r
1208             // Get train descriptors collection.\r
1209             const std::vector<GpuMat>& getTrainDescriptors() const;\r
1210 \r
1211             // Clear train descriptors collection.\r
1212             void clear();\r
1213 \r
1214             // Return true if there are not train descriptors in collection.\r
1215             bool empty() const;\r
1216 \r
1217             // Return true if the matcher supports mask in match methods.\r
1218             bool isMaskSupported() const;\r
1219 \r
1220             // Find one best match for each query descriptor.\r
1221             // trainIdx.at<int>(0, queryIdx) will contain best train index for queryIdx\r
1222             // distance.at<float>(0, queryIdx) will contain distance\r
1223             void matchSingle(const GpuMat& queryDescs, const GpuMat& trainDescs,\r
1224                 GpuMat& trainIdx, GpuMat& distance,\r
1225                 const GpuMat& mask = GpuMat(), Stream& stream = Stream::Null());\r
1226 \r
1227             // Download trainIdx and distance and convert it to CPU vector with DMatch\r
1228             static void matchDownload(const GpuMat& trainIdx, const GpuMat& distance, std::vector<DMatch>& matches);\r
1229             // Convert trainIdx and distance to vector with DMatch\r
1230             static void matchConvert(const Mat& trainIdx, const Mat& distance, std::vector<DMatch>& matches);\r
1231 \r
1232             // Find one best match for each query descriptor.\r
1233             void match(const GpuMat& queryDescs, const GpuMat& trainDescs, std::vector<DMatch>& matches,\r
1234                 const GpuMat& mask = GpuMat());\r
1235 \r
1236             // Make gpu collection of trains and masks in suitable format for matchCollection function\r
1237             void makeGpuCollection(GpuMat& trainCollection, GpuMat& maskCollection,\r
1238                 const vector<GpuMat>& masks = std::vector<GpuMat>());\r
1239 \r
1240             // Find one best match from train collection for each query descriptor.\r
1241             // trainIdx.at<int>(0, queryIdx) will contain best train index for queryIdx\r
1242             // imgIdx.at<int>(0, queryIdx) will contain best image index for queryIdx\r
1243             // distance.at<float>(0, queryIdx) will contain distance\r
1244             void matchCollection(const GpuMat& queryDescs, const GpuMat& trainCollection,\r
1245                 GpuMat& trainIdx, GpuMat& imgIdx, GpuMat& distance,\r
1246                 const GpuMat& maskCollection, Stream& stream = Stream::Null());\r
1247 \r
1248             // Download trainIdx, imgIdx and distance and convert it to vector with DMatch\r
1249             static void matchDownload(const GpuMat& trainIdx, const GpuMat& imgIdx, const GpuMat& distance, std::vector<DMatch>& matches);\r
1250             // Convert trainIdx, imgIdx and distance to vector with DMatch\r
1251             static void matchConvert(const Mat& trainIdx, const Mat& imgIdx, const Mat& distance, std::vector<DMatch>& matches);\r
1252 \r
1253             // Find one best match from train collection for each query descriptor.\r
1254             void match(const GpuMat& queryDescs, std::vector<DMatch>& matches, const std::vector<GpuMat>& masks = std::vector<GpuMat>());\r
1255 \r
1256             // Find k best matches for each query descriptor (in increasing order of distances).\r
1257             // trainIdx.at<int>(queryIdx, i) will contain index of i'th best trains (i < k).\r
1258             // distance.at<float>(queryIdx, i) will contain distance.\r
1259             // allDist is a buffer to store all distance between query descriptors and train descriptors\r
1260             // it have size (nQuery,nTrain) and CV_32F type\r
1261             // allDist.at<float>(queryIdx, trainIdx) will contain FLT_MAX, if trainIdx is one from k best,\r
1262             // otherwise it will contain distance between queryIdx and trainIdx descriptors\r
1263             void knnMatch(const GpuMat& queryDescs, const GpuMat& trainDescs,\r
1264                 GpuMat& trainIdx, GpuMat& distance, GpuMat& allDist, int k, const GpuMat& mask = GpuMat(), Stream& stream = Stream::Null());\r
1265 \r
1266             // Download trainIdx and distance and convert it to vector with DMatch\r
1267             // compactResult is used when mask is not empty. If compactResult is false matches\r
1268             // vector will have the same size as queryDescriptors rows. If compactResult is true\r
1269             // matches vector will not contain matches for fully masked out query descriptors.\r
1270             static void knnMatchDownload(const GpuMat& trainIdx, const GpuMat& distance,\r
1271                 std::vector< std::vector<DMatch> >& matches, bool compactResult = false);\r
1272             // Convert trainIdx and distance to vector with DMatch\r
1273             static void knnMatchConvert(const Mat& trainIdx, const Mat& distance,\r
1274                 std::vector< std::vector<DMatch> >& matches, bool compactResult = false);\r
1275 \r
1276             // Find k best matches for each query descriptor (in increasing order of distances).\r
1277             // compactResult is used when mask is not empty. If compactResult is false matches\r
1278             // vector will have the same size as queryDescriptors rows. If compactResult is true\r
1279             // matches vector will not contain matches for fully masked out query descriptors.\r
1280             void knnMatch(const GpuMat& queryDescs, const GpuMat& trainDescs,\r
1281                 std::vector< std::vector<DMatch> >& matches, int k, const GpuMat& mask = GpuMat(),\r
1282                 bool compactResult = false);\r
1283 \r
1284             // Find k best matches  for each query descriptor (in increasing order of distances).\r
1285             // compactResult is used when mask is not empty. If compactResult is false matches\r
1286             // vector will have the same size as queryDescriptors rows. If compactResult is true\r
1287             // matches vector will not contain matches for fully masked out query descriptors.\r
1288             void knnMatch(const GpuMat& queryDescs, std::vector< std::vector<DMatch> >& matches, int knn,\r
1289                 const std::vector<GpuMat>& masks = std::vector<GpuMat>(), bool compactResult = false );\r
1290 \r
1291             // Find best matches for each query descriptor which have distance less than maxDistance.\r
1292             // nMatches.at<unsigned int>(0, queruIdx) will contain matches count for queryIdx.\r
1293             // carefully nMatches can be greater than trainIdx.cols - it means that matcher didn't find all matches,\r
1294             // because it didn't have enough memory.\r
1295             // trainIdx.at<int>(queruIdx, i) will contain ith train index (i < min(nMatches.at<unsigned int>(0, queruIdx), trainIdx.cols))\r
1296             // distance.at<int>(queruIdx, i) will contain ith distance (i < min(nMatches.at<unsigned int>(0, queruIdx), trainIdx.cols))\r
1297             // If trainIdx is empty, then trainIdx and distance will be created with size nQuery x nTrain,\r
1298             // otherwize user can pass own allocated trainIdx and distance with size nQuery x nMaxMatches\r
1299             // Matches doesn't sorted.\r
1300             void radiusMatch(const GpuMat& queryDescs, const GpuMat& trainDescs,\r
1301                 GpuMat& trainIdx, GpuMat& nMatches, GpuMat& distance, float maxDistance,\r
1302                 const GpuMat& mask = GpuMat(), Stream& stream = Stream::Null());\r
1303 \r
1304             // Download trainIdx, nMatches and distance and convert it to vector with DMatch.\r
1305             // matches will be sorted in increasing order of distances.\r
1306             // compactResult is used when mask is not empty. If compactResult is false matches\r
1307             // vector will have the same size as queryDescriptors rows. If compactResult is true\r
1308             // matches vector will not contain matches for fully masked out query descriptors.\r
1309             static void radiusMatchDownload(const GpuMat& trainIdx, const GpuMat& nMatches, const GpuMat& distance,\r
1310                 std::vector< std::vector<DMatch> >& matches, bool compactResult = false);\r
1311             // Convert trainIdx, nMatches and distance to vector with DMatch.\r
1312             static void radiusMatchConvert(const Mat& trainIdx, const Mat& nMatches, const Mat& distance,\r
1313                 std::vector< std::vector<DMatch> >& matches, bool compactResult = false);\r
1314 \r
1315             // Find best matches for each query descriptor which have distance less than maxDistance\r
1316             // in increasing order of distances).\r
1317             void radiusMatch(const GpuMat& queryDescs, const GpuMat& trainDescs,\r
1318                 std::vector< std::vector<DMatch> >& matches, float maxDistance,\r
1319                 const GpuMat& mask = GpuMat(), bool compactResult = false);\r
1320 \r
1321             // Find best matches from train collection for each query descriptor which have distance less than\r
1322             // maxDistance (in increasing order of distances).\r
1323             void radiusMatch(const GpuMat& queryDescs, std::vector< std::vector<DMatch> >& matches, float maxDistance,\r
1324                 const std::vector<GpuMat>& masks = std::vector<GpuMat>(), bool compactResult = false);\r
1325 \r
1326             DistType distType;\r
1327 \r
1328         private:\r
1329             std::vector<GpuMat> trainDescCollection;\r
1330         };\r
1331 \r
1332         template <class Distance>\r
1333         class CV_EXPORTS BruteForceMatcher_GPU;\r
1334 \r
1335         template <typename T>\r
1336         class CV_EXPORTS BruteForceMatcher_GPU< L1<T> > : public BruteForceMatcher_GPU_base\r
1337         {\r
1338         public:\r
1339             explicit BruteForceMatcher_GPU() : BruteForceMatcher_GPU_base(L1Dist) {}\r
1340             explicit BruteForceMatcher_GPU(L1<T> /*d*/) : BruteForceMatcher_GPU_base(L1Dist) {}\r
1341         };\r
1342         template <typename T>\r
1343         class CV_EXPORTS BruteForceMatcher_GPU< L2<T> > : public BruteForceMatcher_GPU_base\r
1344         {\r
1345         public:\r
1346             explicit BruteForceMatcher_GPU() : BruteForceMatcher_GPU_base(L2Dist) {}\r
1347             explicit BruteForceMatcher_GPU(L2<T> /*d*/) : BruteForceMatcher_GPU_base(L2Dist) {}\r
1348         };\r
1349         template <> class CV_EXPORTS BruteForceMatcher_GPU< HammingLUT > : public BruteForceMatcher_GPU_base\r
1350         {\r
1351         public:\r
1352             explicit BruteForceMatcher_GPU() : BruteForceMatcher_GPU_base(HammingDist) {}\r
1353             explicit BruteForceMatcher_GPU(HammingLUT /*d*/) : BruteForceMatcher_GPU_base(HammingDist) {}\r
1354         };\r
1355         template <> class CV_EXPORTS BruteForceMatcher_GPU< Hamming > : public BruteForceMatcher_GPU_base\r
1356         {\r
1357         public:\r
1358             explicit BruteForceMatcher_GPU() : BruteForceMatcher_GPU_base(HammingDist) {}\r
1359             explicit BruteForceMatcher_GPU(Hamming /*d*/) : BruteForceMatcher_GPU_base(HammingDist) {}\r
1360         };\r
1361 \r
1362         ////////////////////////////////// CascadeClassifier_GPU //////////////////////////////////////////\r
1363         // The cascade classifier class for object detection.\r
1364         class CV_EXPORTS CascadeClassifier_GPU\r
1365         {\r
1366         public:\r
1367             CascadeClassifier_GPU();\r
1368             CascadeClassifier_GPU(const string& filename);\r
1369             ~CascadeClassifier_GPU();\r
1370 \r
1371             bool empty() const;\r
1372             bool load(const string& filename);\r
1373             void release();\r
1374 \r
1375             /* returns number of detected objects */\r
1376             int detectMultiScale( const GpuMat& image, GpuMat& objectsBuf, double scaleFactor=1.2, int minNeighbors=4, Size minSize=Size());\r
1377 \r
1378             bool findLargestObject;\r
1379             bool visualizeInPlace;\r
1380 \r
1381             Size getClassifierSize() const;\r
1382         private:\r
1383 \r
1384             struct CascadeClassifierImpl;\r
1385             CascadeClassifierImpl* impl;\r
1386         };\r
1387 \r
1388         ////////////////////////////////// SURF //////////////////////////////////////////\r
1389 \r
1390         class CV_EXPORTS SURF_GPU : public CvSURFParams\r
1391         {\r
1392         public:\r
1393             enum KeypointLayout \r
1394             {\r
1395                 SF_X = 0,\r
1396                 SF_Y,\r
1397                 SF_LAPLACIAN,\r
1398                 SF_SIZE,\r
1399                 SF_DIR,\r
1400                 SF_HESSIAN,\r
1401                 SF_FEATURE_STRIDE\r
1402             };\r
1403 \r
1404             //! the default constructor\r
1405             SURF_GPU();\r
1406             //! the full constructor taking all the necessary parameters\r
1407             explicit SURF_GPU(double _hessianThreshold, int _nOctaves=4,\r
1408                  int _nOctaveLayers=2, bool _extended=false, float _keypointsRatio=0.01f, bool _upright = false);\r
1409 \r
1410             //! returns the descriptor size in float's (64 or 128)\r
1411             int descriptorSize() const;\r
1412 \r
1413             //! upload host keypoints to device memory\r
1414             void uploadKeypoints(const vector<KeyPoint>& keypoints, GpuMat& keypointsGPU);\r
1415             //! download keypoints from device to host memory\r
1416             void downloadKeypoints(const GpuMat& keypointsGPU, vector<KeyPoint>& keypoints);\r
1417 \r
1418             //! download descriptors from device to host memory\r
1419             void downloadDescriptors(const GpuMat& descriptorsGPU, vector<float>& descriptors);\r
1420             \r
1421             //! finds the keypoints using fast hessian detector used in SURF\r
1422             //! supports CV_8UC1 images\r
1423             //! keypoints will have nFeature cols and 6 rows\r
1424             //! keypoints.ptr<float>(SF_X)[i] will contain x coordinate of i'th feature\r
1425             //! keypoints.ptr<float>(SF_Y)[i] will contain y coordinate of i'th feature\r
1426             //! keypoints.ptr<float>(SF_LAPLACIAN)[i] will contain laplacian sign of i'th feature\r
1427             //! keypoints.ptr<float>(SF_SIZE)[i] will contain size of i'th feature\r
1428             //! keypoints.ptr<float>(SF_DIR)[i] will contain orientation of i'th feature\r
1429             //! keypoints.ptr<float>(SF_HESSIAN)[i] will contain response of i'th feature\r
1430             void operator()(const GpuMat& img, const GpuMat& mask, GpuMat& keypoints);\r
1431             //! finds the keypoints and computes their descriptors. \r
1432             //! Optionally it can compute descriptors for the user-provided keypoints and recompute keypoints direction\r
1433             void operator()(const GpuMat& img, const GpuMat& mask, GpuMat& keypoints, GpuMat& descriptors, \r
1434                 bool useProvidedKeypoints = false);\r
1435 \r
1436             void operator()(const GpuMat& img, const GpuMat& mask, std::vector<KeyPoint>& keypoints);\r
1437             void operator()(const GpuMat& img, const GpuMat& mask, std::vector<KeyPoint>& keypoints, GpuMat& descriptors, \r
1438                 bool useProvidedKeypoints = false);\r
1439 \r
1440             void operator()(const GpuMat& img, const GpuMat& mask, std::vector<KeyPoint>& keypoints, std::vector<float>& descriptors, \r
1441                 bool useProvidedKeypoints = false);\r
1442 \r
1443             void releaseMemory();\r
1444 \r
1445             //! max keypoints = min(keypointsRatio * img.size().area(), 65535)\r
1446             float keypointsRatio;\r
1447 \r
1448             GpuMat sum, mask1, maskSum, intBuffer;\r
1449 \r
1450             GpuMat det, trace;\r
1451 \r
1452             GpuMat maxPosBuffer;\r
1453         };\r
1454 \r
1455     }\r
1456 \r
1457     //! Speckle filtering - filters small connected components on diparity image.\r
1458     //! It sets pixel (x,y) to newVal if it coresponds to small CC with size < maxSpeckleSize.\r
1459     //! Threshold for border between CC is diffThreshold;\r
1460     CV_EXPORTS void filterSpeckles( Mat& img, uchar newVal, int maxSpeckleSize, uchar diffThreshold, Mat& buf);\r
1461 \r
1462 }\r
1463 #include "opencv2/gpu/matrix_operations.hpp"\r
1464 \r
1465 #endif /* __OPENCV_GPU_HPP__ */\r