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

  /external/opencv3/modules/imgproc/test/
test_thresh.cpp 127 int width_n = _src.cols*cn, height = _src.rows; local
158 for( j = 0; j < width_n; j++ )
165 for( j = 0; j < width_n; j++ )
172 for( j = 0; j < width_n; j++ )
184 for( j = 0; j < width_n; j++ )
191 for( j = 0; j < width_n; j++ )
198 for( j = 0; j < width_n; j++ )
210 for( j = 0; j < width_n; j++ )
220 for( j = 0; j < width_n; j++ )
230 for( j = 0; j < width_n; j++
    [all...]
test_templmatch.cpp 152 int width_n = templ->cols*cn, height = templ->rows; local
207 for( l = 0; l < width_n; l++ )
217 for( l = 0; l < width_n; l += 3 )
239 for( l = 0; l < width_n; l++ )
249 for( l = 0; l < width_n; l += 3 )
test_color.cpp 394 int width_n = src.cols*elem_size; local
398 memcpy( dst2.ptr(i), src.ptr(i), width_n );
403 for( j = 0; j < width_n; j += elem_size )
    [all...]
  /external/opencv/cv/src/
cvmorph.cpp 326 int width_n = (prev_x_range.end_index - prev_x_range.start_index)*pix_size; local
336 for( i = 0; i < width_n; i += sizeof(int) )
352 trow[i + width_n] = trow[j];
362 trow[i + width_n] = bt[i];
    [all...]
cvfilter.cpp 345 int width = prev_x_range.end_index - prev_x_range.start_index, width_n = width*pix_size; local
359 trow[i] = bptr[i + width_n];
361 else if( !(((size_t)(bptr + bsz1)|(size_t)src|width_n) & (sizeof(int)-1)) )
362 for( i = 0; i < width_n; i += sizeof(int) )
365 for( i = 0; i < width_n; i++ )
378 bptr[i + width_n] = bptr[j];
388 bptr[i + width_n] = bt[i];
399 bptr[i + width_n] = trow[i];
    [all...]

Completed in 186 milliseconds