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

  /external/webp/src/enc/
histogram.c 396 const int bin_id = GetBinIdForEntropy(c->literal_min_, c->literal_max_, local
398 assert(bin_id < NUM_PARTITIONS);
399 return bin_id;
404 const int bin_id = local
411 assert(bin_id < BIN_SIZE);
412 return bin_id;
474 const int16_t bin_id = low_effort ? local
477 const int bin_offset = bin_id * bin_depth;
510 int bin_id; local
513 for (bin_id = 0; bin_id < num_bins; ++bin_id)
    [all...]
  /external/opencv3/modules/objdetect/src/opencl/
objdetect_hog.cl 102 for (int bin_id = 0; bin_id < cnbins; ++bin_id)
103 hist[bin_id * 48] = 0.f;
130 for (int bin_id = 0; bin_id < cnbins; ++bin_id, hist_ += 48)
141 final_hist[(cell_x * 2 + cell_y) * cnbins + bin_id] =
  /external/opencv3/modules/cudaobjdetect/src/cuda/
hog.cu 146 for (int bin_id = 0; bin_id < cnbins; ++bin_id)
147 hist[bin_id * 48 * nblocks] = 0.f;
173 for (int bin_id = 0; bin_id < cnbins; ++bin_id, hist_ += 48 * nblocks)
178 final_hist[((cell_x + block_x * 2) * 2 + cell_y) * cnbins + bin_id]
    [all...]

Completed in 139 milliseconds