fixed some warnings

This commit is contained in:
Andrey Morozov
2010-08-18 13:47:10 +00:00
parent a3582b4780
commit aaa8678cff
3 changed files with 7 additions and 4 deletions

View File

@@ -288,14 +288,14 @@ namespace cv
int rows, cols;
size_t step;
int alloc_type;
uchar* data;
int* refcount;
uchar* datastart;
uchar* dataend;
int alloc_type;
};
//////////////////////////////// CudaStream ////////////////////////////////
@@ -374,9 +374,10 @@ namespace cv
// It queries current active device.
static bool checkIfGpuCallReasonable();
int preset;
int ndisp;
int winSize;
int preset;
// If avergeTexThreshold == 0 => post procesing is disabled
// If avergeTexThreshold != 0 then disparity is set 0 in each point (x,y) where for left image

View File

@@ -403,6 +403,8 @@ inline CudaMem CudaMem::clone() const
}
inline void CudaMem::create(Size _size, int _type, int _alloc_type) { create(_size.height, _size.width, _type, _alloc_type); }
//CCP void CudaMem::create(int _rows, int _cols, int _type, int _alloc_type);
//CPP void CudaMem::release();