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

1 2 3

  /external/opencv3/modules/imgproc/src/
samplers.cpp 143 ip.x = cvFloor( center.x );
144 ip.y = cvFloor( center.y );
229 ip.x = cvFloor( center.x );
230 ip.y = cvFloor( center.y );
289 if( (unsigned)(cvFloor(xs)-1) < (unsigned)(src_size.width - 3) &&
290 (unsigned)(cvFloor(ys)-1) < (unsigned)(src_size.height - 3) &&
291 (unsigned)(cvFloor(xe)-1) < (unsigned)(src_size.width - 3) &&
292 (unsigned)(cvFloor(ye)-1) < (unsigned)(src_size.height - 3))
296 int ixs = cvFloor( xs );
297 int iys = cvFloor( ys )
    [all...]
histogram.cpp 73 int idx = cvFloor(j*a + b);
245 int idx = cvFloor(*p0*a_[0] + b_[0]);
258 int idx = cvFloor(*p0*a_[0] + b_[0]);
321 int idx0 = cvFloor(*p0*a_[0] + b_[0]);
322 int idx1 = cvFloor(*p1*a_[1] + b_[1]);
333 int idx0 = cvFloor(*p0*a_[0] + b_[0]);
334 int idx1 = cvFloor(*p1*a_[1] + b_[1]);
397 int idx0 = cvFloor(*p0*a_[0] + b_[0]);
398 int idx1 = cvFloor(*p1*a_[1] + b_[1]);
399 int idx2 = cvFloor(*p2*a_[2] + b_[2])
    [all...]
shapedescr.cpp 533 xmin = cvFloor(xyminf[0]);
534 ymin = cvFloor(xyminf[1]);
535 xmax = cvFloor(xymaxf[0]);
536 ymax = cvFloor(xymaxf[1]);
590 v.i = CV_TOGGLE_FLT(xmin); xmin = cvFloor(v.f);
591 v.i = CV_TOGGLE_FLT(ymin); ymin = cvFloor(v.f);
593 // (note +1 in width and height calculation below), cvFloor is used here instead of cvCeil
594 v.i = CV_TOGGLE_FLT(xmax); xmax = cvFloor(v.f);
595 v.i = CV_TOGGLE_FLT(ymax); ymax = cvFloor(v.f);
canny.cpp 129 int low = cvFloor(low_thresh), high = cvFloor(high_thresh);
638 int low = cvFloor(low_thresh);
639 int high = cvFloor(high_thresh);
705 int low = cvFloor(low_thresh);
706 int high = cvFloor(high_thresh);
    [all...]
hough.cpp 175 int n = cvFloor(idx*scale) - 1;
241 int rn = cvFloor( std::sqrt( (double)w * w + (double)h * h ) * irho );
242 int tn = cvFloor( 2 * CV_PI * itheta );
291 ti0 = cvFloor( (t + CV_PI*0.5) * itheta );
298 halftn = cvFloor( CV_PI / theta_it );
304 i += cvFloor( phi1 );
358 ti0 = cvFloor( (t + CV_PI * 0.5) * istheta );
365 i = cvFloor( rv ) * stn + ti1;
    [all...]
floodfill.cpp 569 ld_buf.b[i] = saturate_cast<uchar>(cvFloor(loDiff[i]));
570 ud_buf.b[i] = saturate_cast<uchar>(cvFloor(upDiff[i]));
575 ld_buf.i[i] = cvFloor(loDiff[i]);
576 ud_buf.i[i] = cvFloor(upDiff[i]);
clahe.cpp 250 int tx1 = cvFloor(txf);
292 int ty1 = cvFloor(tyf);
  /external/opencv/cv/src/
cvsamplers.cpp 159 ip.x = cvFloor( center.x ); \
160 ip.y = cvFloor( center.y ); \
277 ip.x = cvFloor( center.x ); \
278 ip.y = cvFloor( center.y ); \
405 ip.x = cvFloor( center.x );
406 ip.y = cvFloor( center.y );
623 if( (unsigned)(cvFloor(xs)-1) < (unsigned)(src_size.width - 3) && \
624 (unsigned)(cvFloor(ys)-1) < (unsigned)(src_size.height - 3) && \
625 (unsigned)(cvFloor(xe)-1) < (unsigned)(src_size.width - 3) && \
626 (unsigned)(cvFloor(ye)-1) < (unsigned)(src_size.height - 3))
    [all...]
cvadapthresh.cpp 54 int idelta = type == CV_THRESH_BINARY ? cvCeil(delta) : cvFloor(delta);
cvhistogram.cpp 816 int idx = cvFloor((j - a)*scale);
    [all...]
cvhough.cpp 163 int n = cvFloor(idx*scale) - 1;
254 rn = cvFloor( sqrt( (double)w * w + (double)h * h ) * irho );
255 tn = cvFloor( 2 * Pi * itheta );
308 ti0 = cvFloor( (t + Pi / 2) * itheta );
315 halftn = cvFloor( Pi / theta_it );
320 i = cvFloor( rv ) * tn;
321 i += cvFloor( phi1 );
376 ti0 = cvFloor( (t + Pi * 0.5f) * istheta );
385 i = cvFloor( rv ) * stn + ti1;
    [all...]
cvthresh.cpp 345 thresh = cvFloor(icvGetThreshVal_Otsu( hist ));
391 ithresh = cvFloor(thresh);
446 ithresh = cvFloor(thresh+1.);
cvcanny.cpp 121 low = cvFloor( low_thresh );
122 high = cvFloor( high_thresh );
cvimgwarp.cpp 441 sy = cvFloor(fy); \
    [all...]
cvshapedescr.cpp     [all...]
  /external/opencv3/modules/cudawarping/test/
interpolation.hpp 69 int x1 = cvFloor(x);
70 int y1 = cvFloor(y);
  /external/opencv3/modules/cudaarithm/src/cuda/
threshold.cu 139 thresh = cvFloor(thresh);
  /external/opencv/cxcore/src/
cxrand.cpp 400 ICV_IMPL_RAND( 8u, uchar, int, cvFloor, CV_CAST_8U )
401 ICV_IMPL_RAND( 16u, ushort, int, cvFloor, CV_CAST_16U )
402 ICV_IMPL_RAND( 16s, short, int, cvFloor, CV_CAST_16S )
403 ICV_IMPL_RAND( 32s, int, int, cvFloor, CV_CAST_32S )
516 int t1 = iparam[1][i] = cvFloor( param2.val[i] ) - t0;
  /external/opencv3/modules/imgproc/test/
test_imgwarp_strict.cpp 470 int isy0 = cvFloor(fsy0), isy1 = std::min(cvFloor(fsy1), ssize.height - 1);
478 int isx0 = cvFloor(fsx0), isx1 = std::min(ssize.width - 1, cvFloor(fsx1));
580 int isx = cvFloor(fsx);
594 dims[0][dx].first = std::min(cvFloor(dx * scale_x), ssize.width - 1);
596 dims[1][dy].first = std::min(cvFloor(dy * scale_y), ssize.height - 1);
906 int isx = cvFloor(sx), isy = cvFloor(sy);
    [all...]
test_bilateral_filter.cpp 196 int idx = cvFloor(alpha);
218 int idx = cvFloor(alpha);
  /external/opencv3/modules/video/test/
test_camshift.cpp 242 init_rect.x = cvFloor(box0.center.x - m*(0.45 + cvtest::randReal(rng)*0.2));
243 init_rect.y = cvFloor(box0.center.y - m*(0.45 + cvtest::randReal(rng)*0.2));
409 init_rect.x = cvFloor(box0.center.x - m*(0.4 + cvtest::randReal(rng)*0.2));
410 init_rect.y = cvFloor(box0.center.y - m*(0.4 + cvtest::randReal(rng)*0.2));
  /external/opencv3/apps/traincascade/
old_ml_data.cpp 560 avcount = cvFloor( cvNorm( var_idx_mask, 0, CV_L1 ) );
644 train_sample_count = std::max(1, cvFloor( train_sample_portion * sample_count ));
738 avcount = cvFloor( cvNorm( var_idx_mask, 0, CV_L1 ) );
HOGfeatures.cpp 207 int bidx = cvFloor(angle);
  /external/opencv3/modules/hal/include/opencv2/hal/
defs.h 402 CV_INLINE int cvFloor( double value )
509 CV_INLINE int cvFloor( float value )
526 CV_INLINE int cvFloor( int value )
  /external/opencv3/modules/ml/test/
test_gbttest.cpp 125 int train_sample_count = cvFloor(_get_len(data->get_responses())*0.5f);

Completed in 913 milliseconds

1 2 3