/external/opencv/cv/src/ |
D | cvstereogc.cpp | 536 short* dleft = state->dispLeft->data.s; in icvComputeEnergy() local 547 for( y = 0; y < rows; y++, left += step, right += step, dleft += dstep, dright += dstep ) in icvComputeEnergy() 551 int d = dleft[x], x1, d1; in icvComputeEnergy() 566 d1 = dleft[x+1]; in icvComputeEnergy() 571 d1 = dleft[x+dstep]; in icvComputeEnergy() 701 const short* dleft = dleft0 + dstep*y; in icvAlphaExpand() local 706 const short* dlr[] = { dleft, dright }; in icvAlphaExpand() 727 d = dleft[x]; in icvAlphaExpand() 802 if( d != -dleft[x1] ) in icvAlphaExpand() 820 short* dleft = dleft0 + dstep*y; in icvAlphaExpand() local [all …]
|
/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/detail/ |
D | gpumat.hpp | 250 __host__ GpuMat_<T>& GpuMat_<T>::adjustROI(int dtop, int dbottom, int dleft, int dright) in adjustROI() argument 252 return (GpuMat_<T>&)(GpuMat::adjustROI(dtop, dbottom, dleft, dright)); in adjustROI()
|
/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/ |
D | gpumat.hpp | 123 __host__ GpuMat_& adjustROI(int dtop, int dbottom, int dleft, int dright);
|
/external/opencv3/modules/core/misc/java/src/java/ |
D | core+Mat.java | 121 public Mat adjustROI(int dtop, int dbottom, int dleft, int dright) in adjustROI() argument 124 Mat retVal = new Mat(n_adjustROI(nativeObj, dtop, dbottom, dleft, dright)); in adjustROI() 1119 …private static native long n_adjustROI(long nativeObj, int dtop, int dbottom, int dleft, int drigh… in n_adjustROI() argument
|
/external/opencv3/modules/core/src/ |
D | cuda_gpu_mat.cpp | 230 GpuMat& cv::cuda::GpuMat::adjustROI(int dtop, int dbottom, int dleft, int dright) in adjustROI() argument 241 int col1 = std::max(ofs.x - dleft, 0); in adjustROI()
|
D | copy.cpp | 1117 int dleft = std::min(ofs.x, left); in ocl_copyMakeBorder() local 1119 src.adjustROI(dtop, dbottom, dleft, dright); in ocl_copyMakeBorder() 1121 left -= dleft; in ocl_copyMakeBorder() 1165 int dleft = std::min(ofs.x, left); in copyMakeBorder() local 1167 src.adjustROI(dtop, dbottom, dleft, dright); in copyMakeBorder() 1169 left -= dleft; in copyMakeBorder()
|
D | umatrix.cpp | 460 UMat& UMat::adjustROI( int dtop, int dbottom, int dleft, int dright ) in adjustROI() argument 467 int col1 = std::max(ofs.x - dleft, 0), col2 = std::min(ofs.x + cols + dright, wholeSize.width); in adjustROI()
|
D | matrix.cpp | 905 Mat& Mat::adjustROI( int dtop, int dbottom, int dleft, int dright ) in adjustROI() argument 912 int col1 = std::max(ofs.x - dleft, 0), col2 = std::min(ofs.x + cols + dright, wholeSize.width); in adjustROI()
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | cuda.hpp | 247 GpuMat& adjustROI(int dtop, int dbottom, int dleft, int dright);
|
D | mat.hpp | 1446 Mat& adjustROI( int dtop, int dbottom, int dleft, int dright ); 2045 Mat_& adjustROI( int dtop, int dbottom, int dleft, int dright ); 2242 UMat& adjustROI( int dtop, int dbottom, int dleft, int dright );
|
D | mat.inl.hpp | 1452 Mat_<_Tp>& Mat_<_Tp>::adjustROI( int dtop, int dbottom, int dleft, int dright ) in adjustROI() argument 1454 return (Mat_<_Tp>&)(Mat::adjustROI(dtop, dbottom, dleft, dright)); in adjustROI()
|
/external/opencv3/modules/java/generator/src/cpp/ |
D | Mat.cpp | 212 (JNIEnv* env, jclass, jlong self, jint dtop, jint dbottom, jint dleft, jint dright); 215 (JNIEnv* env, jclass, jlong self, jint dtop, jint dbottom, jint dleft, jint dright) in Java_org_opencv_core_Mat_n_1adjustROI() argument 221 Mat _retval_ = me->adjustROI( dtop, dbottom, dleft, dright ); in Java_org_opencv_core_Mat_n_1adjustROI()
|