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

  /external/opencv3/apps/traincascade/
boost.cpp 569 int effective_buf_height = 0, effective_buf_width = 0; local
636 effective_buf_width = sample_count;
639 if (effective_buf_width >= effective_buf_height)
642 effective_buf_width *= buf_count;
644 if ((uint64)effective_buf_width * (uint64)effective_buf_height != effective_buf_size)
650 buf = cvCreateMat( effective_buf_height, effective_buf_width, CV_16UC1 );
652 buf = cvCreateMat( effective_buf_height, effective_buf_width, CV_32SC1 );
    [all...]
old_ml_tree.cpp 174 int effective_buf_height = 0, effective_buf_width = 0; local
310 effective_buf_width = sample_count;
313 if (effective_buf_width >= effective_buf_height)
316 effective_buf_width *= buf_count;
318 if ((uint64)effective_buf_width * (uint64)effective_buf_height != effective_buf_size)
327 CV_CALL( buf = cvCreateMat( effective_buf_height, effective_buf_width, CV_16UC1 ));
332 CV_CALL( buf = cvCreateMat( effective_buf_height, effective_buf_width, CV_32SC1 ));
    [all...]

Completed in 487 milliseconds