HomeSort by relevance Sort by last modified time
    Searched refs:cvCeil (Results 1 - 25 of 33) sorted by null

1 2

  /external/opencv/cv/src/
cvadapthresh.cpp 54 int idelta = type == CV_THRESH_BINARY ? cvCeil(delta) : cvFloor(delta);
cvsurf.cpp 437 x = cvCeil(xf)+1; patch_rect0.width = MAX(patch_rect0.width, x);
438 y = cvCeil(yf)+1; patch_rect0.height = MAX(patch_rect0.height, y);
cvhough.cpp 887 CV_CALL( accum = cvCreateMat( cvCeil(img->rows*idp)+2, cvCeil(img->cols*idp)+2, CV_32SC1 ));
    [all...]
cvsmooth.cpp     [all...]
  /external/opencv3/modules/cudaimgproc/src/
generalized_hough.cpp 532 ensureSizeIsEnough(cvCeil(imageSize_.height * idp) + 2, cvCeil(imageSize_.width * idp) + 2, CV_32SC1, hist_);
759 const int angleRange = cvCeil((maxAngle_ - minAngle_) * iAngleStep);
762 const int scaleRange = cvCeil((maxScale_ - minScale_) * iScaleStep);
765 const int histRows = cvCeil(imageSize_.height * idp);
766 const int histCols = cvCeil(imageSize_.width * idp);
844 const int angleRange = cvCeil((maxAngle_ - minAngle_) * iAngleStep);
868 const int scaleRange = cvCeil((maxScale_ - minScale_) * iScaleStep);
hough_circles.cpp 197 ensureSizeIsEnough(cvCeil(src.rows * idp) + 2, cvCeil(src.cols * idp) + 2, CV_32SC1, accum_);
  /external/opencv3/modules/video/test/
test_camshift.cpp 244 init_rect.width = cvCeil(box0.center.x + m*(0.45 + cvtest::randReal(rng)*0.2) - init_rect.x);
245 init_rect.height = cvCeil(box0.center.y + m*(0.45 + cvtest::randReal(rng)*0.2) - init_rect.y);
411 init_rect.width = cvCeil(box0.center.x + m*(0.4 + cvtest::randReal(rng)*0.2) - init_rect.x);
412 init_rect.height = cvCeil(box0.center.y + m*(0.4 + cvtest::randReal(rng)*0.2) - init_rect.y);
  /external/opencv3/modules/imgproc/src/
generalized_hough.cpp 427 hist_.create(cvCeil(imageSize_.height * idp) + 2, cvCeil(imageSize_.width * idp) + 2, CV_32SC1);
771 const int angleRange = cvCeil((maxAngle_ - minAngle_) * iAngleStep);
819 const int scaleRange = cvCeil((maxScale_ - minScale_) * iScaleStep);
875 const int histRows = cvCeil(imageSize_.height * idp);
876 const int histCols = cvCeil(imageSize_.width * idp);
hough.cpp     [all...]
undistort.cpp 537 Size dsize(destImageWidth, cvCeil(std::max(scale*fabs(ymin)*2, scale*fabs(ymax)*2)));
thresh.cpp     [all...]
  /external/opencv3/modules/hal/include/opencv2/hal/
defs.h 425 CV_INLINE int cvCeil( double value )
532 CV_INLINE int cvCeil( float value )
549 CV_INLINE int cvCeil( int value )
intrin_cpp.hpp 199 OPENCV_HAL_IMPL_MATH_FUNC(v_ceil, cvCeil, int)
615 c.s[i] = cvCeil(a.s[i]);
654 c.s[i] = cvCeil(a.s[i]);
665 c.s[i] = cvCeil(a.s[i]);
  /external/opencv/cxcore/src/
cxrand.cpp 515 int t0 = iparam[0][i] = cvCeil( param1.val[i] );
  /external/opencv3/modules/calib3d/src/
calibration.cpp     [all...]
stereobm.cpp     [all...]
  /external/opencv3/apps/createsamples/
utility.cpp     [all...]
  /external/opencv3/modules/imgproc/test/
test_convhull.cpp     [all...]
  /external/opencv/cxcore/include/
cxtypes.h 252 CV_INLINE int cvCeil( double value )
    [all...]
  /external/opencv3/modules/core/src/
rand.cpp 551 ip[j][1] = cvCeil(a);
matrix.cpp     [all...]
mathfuncs.cpp     [all...]
  /external/opencv3/modules/features2d/src/
orb.cpp     [all...]
  /external/opencv3/modules/core/test/
test_operations.cpp     [all...]
  /external/opencv3/modules/objdetect/src/
hog.cpp     [all...]

Completed in 692 milliseconds

1 2