Lines Matching refs:threshold
265 float* block_hists, float threshold)
284 elem = ::min(elem * scale, threshold);
296 int height, int width, float* block_hists, float threshold)
309 normalize_hists_kernel_many_blocks<32, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
311 normalize_hists_kernel_many_blocks<64, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
313 normalize_hists_kernel_many_blocks<64, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
315 normalize_hists_kernel_many_blocks<256, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
317 normalize_hists_kernel_many_blocks<512, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
337 float free_coef, float threshold, float* confidences)
368 float* coefs, float free_coef, float threshold, float *confidences)
388 block_hists, coefs, free_coef, threshold, confidences);
399 float free_coef, float threshold, unsigned char* labels)
424 labels[blockIdx.y * img_win_width + blockIdx.x * blockDim.z + win_x] = (product + free_coef >= threshold);
430 float* coefs, float free_coef, float threshold, unsigned char* labels)
448 block_hists, coefs, free_coef, threshold, labels);