Searched refs:bcols (Results 1 – 5 of 5) sorted by relevance
/external/opencv3/modules/cudaarithm/src/cuda/ |
D | bitwise_mat.cu | 78 const int bcols = (int) (src.cols * src.elemSize()); in bitwise_not() local 80 if ((bcols & 3) == 0) in bitwise_not() 82 const int vcols = bcols >> 2; in bitwise_not() 89 else if ((bcols & 1) == 0) in bitwise_not() 91 const int vcols = bcols >> 1; in bitwise_not() 100 GlobPtrSz<uchar> vsrc = globPtr((uchar*) src.data, src.step, src.rows, bcols); in bitwise_not() 101 GlobPtrSz<uchar> vdst = globPtr((uchar*) dst.data, dst.step, src.rows, bcols); in bitwise_not() 182 const int bcols = (int) (src1.cols * src1.elemSize()); in bitMat() local 184 if ((bcols & 3) == 0) in bitMat() 186 const int vcols = bcols >> 2; in bitMat() [all …]
|
/external/eigen/test/ |
D | ref.cpp | 58 Index bcols = internal::random<Index>(1,cols-j); in ref_matrix() local 64 RefDynMat rm2 = m1.block(i,j,brows,bcols); in ref_matrix() 65 VERIFY_IS_EQUAL(rm2, m1.block(i,j,brows,bcols)); in ref_matrix() 67 m2.block(i,j,brows,bcols).setOnes(); in ref_matrix() 70 m2.block(i,j,brows,bcols).setRandom(); in ref_matrix() 71 rm2 = m2.block(i,j,brows,bcols); in ref_matrix() 75 ConstRefDynMat rm3 = m1.block(i,j,brows,bcols); in ref_matrix() 76 m1.block(i,j,brows,bcols) *= 2; in ref_matrix() 77 m2.block(i,j,brows,bcols) *= 2; in ref_matrix() 78 VERIFY_IS_EQUAL(rm3, m2.block(i,j,brows,bcols)); in ref_matrix()
|
/external/opencv3/modules/cudalegacy/src/ |
D | bm_fast.cpp | 79 int bcols, brows; in operator ()() local 80 optflowbm_fast::get_buffer_size(I0.cols, I0.rows, search_window, block_window, bcols, brows); in operator ()() 82 ensureSizeIsEnough(brows, bcols, CV_32SC1, buffer); in operator ()()
|
/external/opencv3/modules/photo/src/ |
D | denoising.cuda.cpp | 134 int bcols, brows; in fastNlMeansDenoising() local 135 device::imgproc::nln_fast_get_buffer_size(src_hdr, search_window, block_window, bcols, brows); in fastNlMeansDenoising() 136 GpuMat buffer = pool.getBuffer(brows, bcols, CV_32S); in fastNlMeansDenoising()
|
/external/opencv3/modules/imgproc/src/ |
D | imgwarp.cpp | 4268 int bcols = std::min(bcols0, dst->cols - x); in operator ()() local 4269 Mat dpart(*dst, Rect(x, y, bcols, brows)); in operator ()() 4270 Mat bufxy(_bufxy, Rect(0, 0, bcols, brows)); in operator ()() 4275 bufxy = (*m1)(Rect(x, y, bcols, brows)); in operator ()() 4284 for( x1 = 0; x1 < bcols; x1++ ) in operator ()() 4293 (*m1)(Rect(x, y, bcols, brows)).convertTo(bufxy, bufxy.depth()); in operator ()() 4306 for( ; x1 <= bcols - 8; x1 += 8 ) in operator ()() 4326 for( ; x1 < bcols; x1++ ) in operator ()() 4337 Mat bufa(_bufa, Rect(0, 0, bcols, brows)); in operator ()() 4345 bufxy = (*m1)(Rect(x, y, bcols, brows)); in operator ()() [all …]
|