Home | History | Annotate | Download | only in src

Lines Matching refs:tile_size

199 icvAccumulateMoments( double *tiles, CvSize size, CvSize tile_size, CvMoments * moments )
203 for( y = 0; y < size.height; y += tile_size.height )
205 for( x = 0; x < size.width; x += tile_size.width, tiles += 10 )
381 CvSize size, tile_size = { 32, 32 };
471 tile_size = size;
473 tile_num = ((size.width + tile_size.width - 1)/tile_size.width)*
474 ((size.height + tile_size.height - 1)/tile_size.height);
478 for( y = 0, k = 0; y < size.height; y += tile_size.height )
480 CvSize cur_tile_size = tile_size;
484 for( x = 0; x < size.width; x += tile_size.width, k++ )
496 icvAccumulateMoments( tiles, size, tile_size, moments );