Home
last modified time | relevance | path

Searched refs:dright (Results 1 – 12 of 12) sorted by relevance

/external/opencv/cv/src/
Dcvstereogc.cpp537 short* dright = state->dispRight->data.s; in icvComputeEnergy() local
547 for( y = 0; y < rows; y++, left += step, right += step, dleft += dstep, dright += dstep ) in icvComputeEnergy()
559 d1 = dright[x1]; in icvComputeEnergy()
575 d = dright[x]; in icvComputeEnergy()
581 d1 = dright[x+1]; in icvComputeEnergy()
586 d1 = dright[x+dstep]; in icvComputeEnergy()
702 const short* dright = dright0 + dstep*y; in icvAlphaExpand() local
706 const short* dlr[] = { dleft, dright }; in icvAlphaExpand()
735 d1 = dright[x1]; in icvAlphaExpand()
754 d1 = dright[x1]; in icvAlphaExpand()
[all …]
/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/detail/
Dgpumat.hpp250 __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/
Dgpumat.hpp123 __host__ GpuMat_& adjustROI(int dtop, int dbottom, int dleft, int dright);
/external/opencv3/modules/core/misc/java/src/java/
Dcore+Mat.java121 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 …ivate static native long n_adjustROI(long nativeObj, int dtop, int dbottom, int dleft, int dright); in n_adjustROI() argument
/external/opencv3/modules/core/src/
Dcuda_gpu_mat.cpp230 GpuMat& cv::cuda::GpuMat::adjustROI(int dtop, int dbottom, int dleft, int dright) in adjustROI() argument
242 int col2 = std::min(ofs.x + cols + dright, wholeSize.width); in adjustROI()
Dcopy.cpp1118 int dright = std::min(wholeSize.width - src.cols - ofs.x, right); in ocl_copyMakeBorder() local
1119 src.adjustROI(dtop, dbottom, dleft, dright); in ocl_copyMakeBorder()
1123 right -= dright; in ocl_copyMakeBorder()
1166 int dright = std::min(wholeSize.width - src.cols - ofs.x, right); in copyMakeBorder() local
1167 src.adjustROI(dtop, dbottom, dleft, dright); in copyMakeBorder()
1171 right -= dright; in copyMakeBorder()
Dumatrix.cpp460 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()
Dmatrix.cpp905 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/
Dcuda.hpp247 GpuMat& adjustROI(int dtop, int dbottom, int dleft, int dright);
Dmat.hpp1446 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 );
Dmat.inl.hpp1452 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/
DMat.cpp212 (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()