Searched defs:dleft (Results 1 - 6 of 6) sorted by relevance

/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/detail/
H A Dgpumat.hpp250 __host__ GpuMat_<T>& GpuMat_<T>::adjustROI(int dtop, int dbottom, int dleft, int dright) argument
252 return (GpuMat_<T>&)(GpuMat::adjustROI(dtop, dbottom, dleft, dright));
/external/opencv/cv/src/
H A Dcvstereogc.cpp536 short* dleft = state->dispLeft->data.s; local
547 for( y = 0; y < rows; y++, left += step, right += step, dleft += dstep, dright += dstep )
551 int d = dleft[x], x1, d1;
566 d1 = dleft[x+1];
571 d1 = dleft[x+dstep];
701 const short* dleft = dleft0 + dstep*y; local
706 const short* dlr[] = { dleft, dright };
727 d = dleft[x];
802 if( d != -dleft[x1] )
820 short* dleft local
[all...]
/external/opencv3/modules/core/include/opencv2/core/
H A Dmat.inl.hpp1452 Mat_<_Tp>& Mat_<_Tp>::adjustROI( int dtop, int dbottom, int dleft, int dright ) argument
1454 return (Mat_<_Tp>&)(Mat::adjustROI(dtop, dbottom, dleft, dright));
/external/opencv3/modules/core/misc/java/src/java/
H A Dcore+Mat.java117 // C++: Mat Mat::adjustROI(int dtop, int dbottom, int dleft, int dright)
120 // javadoc: Mat::adjustROI(dtop, dbottom, dleft, dright)
121 public Mat adjustROI(int dtop, int dbottom, int dleft, int dright) argument
124 Mat retVal = new Mat(n_adjustROI(nativeObj, dtop, dbottom, dleft, dright));
1118 // C++: Mat Mat::adjustROI(int dtop, int dbottom, int dleft, int dright)
1119 private static native long n_adjustROI(long nativeObj, int dtop, int dbottom, int dleft, int dright); argument
/external/opencv3/modules/core/src/
H A Dmatrix.cpp905 Mat& Mat::adjustROI( int dtop, int dbottom, int dleft, int dright ) argument
912 int col1 = std::max(ofs.x - dleft, 0), col2 = std::min(ofs.x + cols + dright, wholeSize.width);
/external/opencv3/modules/java/generator/src/cpp/
H A DMat.cpp208 // Mat Mat::adjustROI(int dtop, int dbottom, int dleft, int dright)
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)
221 Mat _retval_ = me->adjustROI( dtop, dbottom, dleft, dright );
214 Java_org_opencv_core_Mat_n_1adjustROI(JNIEnv* env, jclass, jlong self, jint dtop, jint dbottom, jint dleft, jint dright) argument

Completed in 633 milliseconds