mirror of
https://github.com/opencv/opencv.git
synced 2026-07-31 08:13:04 +04:00
Merge pull request #12673 from alalek:fix_build_warnings
* fix build warnings * python: forbid wrapping of functions with "void*" arguments
This commit is contained in:
committed by
GitHub
parent
a8b0db4e5d
commit
5575171652
@@ -134,8 +134,8 @@ public:
|
||||
CV_WRAP GpuMat(const GpuMat& m);
|
||||
|
||||
//! constructor for GpuMat headers pointing to user-allocated data
|
||||
CV_WRAP GpuMat(int rows, int cols, int type, void* data, size_t step = Mat::AUTO_STEP);
|
||||
CV_WRAP GpuMat(Size size, int type, void* data, size_t step = Mat::AUTO_STEP);
|
||||
GpuMat(int rows, int cols, int type, void* data, size_t step = Mat::AUTO_STEP);
|
||||
GpuMat(Size size, int type, void* data, size_t step = Mat::AUTO_STEP);
|
||||
|
||||
//! creates a GpuMat header for a part of the bigger matrix
|
||||
CV_WRAP GpuMat(const GpuMat& m, Range rowRange, Range colRange);
|
||||
|
||||
Reference in New Issue
Block a user