Home
last modified time | relevance | path

Searched refs:buf_max_count (Results 1 – 4 of 4) sorted by relevance

/external/opencv/cv/src/
Dcvmorph.cpp311 int t = buf_max_count - max_ky*2; in start_process()
314 buf_max_count--; in start_process()
332 for( ; buf_count < buf_max_count && y < y2; buf_count++, y++, src += src_step ) in fill_cyclic_buffer()
Dcvfilter.cpp224 buf_max_count = bsz/buf_step; in start_process()
225 buf_max_count = MIN( buf_max_count, max_rows - max_ky*2 ); in start_process()
226 buf_end = buf_start + buf_max_count*buf_step; in start_process()
349 for( ; buf_count < buf_max_count && y < y2; buf_count++, y++, src += src_step ) in fill_cyclic_buffer()
Dcvsmooth.cpp179 buf_max_count--; in start_process()
180 assert( buf_max_count >= max_ky*2 + 1 ); in start_process()
/external/opencv/cv/include/
Dcv.hpp147 int buf_size, buf_step, buf_count, buf_max_count; member in CvBaseImageFilter