HomeSort by relevance Sort by last modified time
    Searched defs:dbl_ptr (Results 1 - 2 of 2) sorted by null

  /external/opencv/ml/src/
mlboost.cpp 342 double** dbl_ptr = (double**)cvStackAlloc( mi*sizeof(dbl_ptr[0]) ); local
367 dbl_ptr[j] = cjk + j*2 + 1;
377 icvSortDblPtr( dbl_ptr, mi, 0 );
381 idx = (int)(dbl_ptr[subset_i] - cjk)/2;
431 idx = (int)(dbl_ptr[i] - cjk) >> 1;
    [all...]
  /external/opencv3/apps/traincascade/
old_ml_boost.cpp 383 double** dbl_ptr = (double**)(cjk + 2*mi); local
408 dbl_ptr[j] = cjk + j*2 + 1;
418 std::sort(dbl_ptr, dbl_ptr + mi, LessThanPtr<double>());
422 idx = (int)(dbl_ptr[subset_i] - cjk)/2;
474 idx = (int)(dbl_ptr[i] - cjk) >> 1;
    [all...]

Completed in 580 milliseconds