Home | History | Annotate | Download | only in src

Lines Matching full:blocks_per_img

122     cv::Size blocks_per_img = numPartsWithin(winSize, blockSize, blockStride);
124 for (int i = 0; i < blocks_per_img.height; ++i)
125 for (int j = 0; j < blocks_per_img.width; ++j)
127 const float *src = &svmDetector[0] + (j * blocks_per_img.height + i) * block_hist_size;
128 float *dst = detector_reordered.ptr<float>() + (i * blocks_per_img.width + j) * block_hist_size;
1337 blocks_per_img = numPartsWithin(imgSize, blockSize, blockStride);
1338 UMat block_hists(1, static_cast<int>(block_hist_size * blocks_per_img.area()) + 256, CV_32F);
1739 const Size blocks_per_img = numPartsWithin(imgSize, blockSize, blockStride);
1740 UMat block_hists(1, static_cast<int>(block_hist_size * blocks_per_img.area()) + 256, CV_32F);