/external/opencv/cvaux/src/ |
D | cvfindhandregion.cpp | 67 int nbins = 20, i, l, i_point, left, right; in icvFindHandRegion() local 114 bin_counts = (int *) cvAlloc( nbins * sizeof( int )); in icvFindHandRegion() 121 memset( bin_counts, 0, nbins * sizeof( int )); in icvFindHandRegion() 171 bsize = vl / nbins; in icvFindHandRegion() 193 for( l = 0; l < nbins; l++ ) in icvFindHandRegion() 208 for( l = nbins - 1; l >= 0; l-- ) in icvFindHandRegion() 216 hand_right = vmax - (nbins - right - 1) * bsize; in icvFindHandRegion() 286 int nbins = 20, i, l, i_point, left, right, jmin, jmax, jl; in icvFindHandRegionA() local 334 bin_counts = (int *) cvAlloc( nbins * sizeof( int )); in icvFindHandRegionA() 341 memset( bin_counts, 0, nbins * sizeof( int )); in icvFindHandRegionA() [all …]
|
/external/jemalloc/test/unit/ |
D | run_quantize.c | 5 unsigned nbins, i; in TEST_BEGIN() local 16 assert_d_eq(mallctl("arenas.nbins", &nbins, &sz, NULL, 0), 0, in TEST_BEGIN() 21 for (i = 0; i < nbins; i++) { in TEST_BEGIN() 96 unsigned nbins, nlruns, i; in TEST_BEGIN() local 105 assert_d_eq(mallctl("arenas.nbins", &nbins, &sz, NULL, 0), 0, in TEST_BEGIN()
|
D | mallctl.c | 195 unsigned nbins, i; in TEST_BEGIN() local 199 len = sizeof(nbins); in TEST_BEGIN() 200 assert_d_eq(mallctl("arenas.nbins", &nbins, &len, NULL, 0), 0, in TEST_BEGIN() 206 for (i = 0; i < nbins; i++) { in TEST_BEGIN() 601 TEST_ARENAS_CONSTANT(unsigned, nbins, NBINS); in TEST_BEGIN()
|
/external/opencv3/modules/objdetect/src/ |
D | hog.cpp | 80 static size_t getBlockHistogramSize(Size block_size, Size cell_size, int nbins) in getBlockHistogramSize() argument 84 return (size_t)(nbins * cells_per_block.area()); in getBlockHistogramSize() 94 return (size_t)nbins* in getDescriptorSize() 121 size_t block_hist_size = getBlockHistogramSize(blockSize, cellSize, nbins); in setSVMDetector() 151 obj["nbins"] >> nbins; in read() 182 << "nbins" << nbins in write() 214 c.nbins = nbins; in copyTo() 308 float angleScale = signedGradient ? (float)(nbins/(2.0*CV_PI)) : (float)(nbins/CV_PI); in computeGradient() 416 … __m128i ione = _mm_set1_epi32(1), _nbins = _mm_set1_epi32(nbins), izero = _mm_setzero_si128(); in computeGradient() 462 hidx += nbins; in computeGradient() [all …]
|
/external/opencv3/apps/traincascade/ |
D | HOGfeatures.cpp | 157 void CvHOGEvaluator::integralHistogram(const Mat &img, vector<Mat> &histogram, Mat &norm, int nbins… in integralHistogram() 186 float angleScale = (float)(nbins/CV_PI); in integralHistogram() 210 bidx += nbins; in integralHistogram() 211 else if( bidx >= nbins ) in integralHistogram() 212 bidx -= nbins; in integralHistogram() 227 for( binIdx = 0; binIdx < nbins; binIdx++ ) in integralHistogram()
|
D | HOGfeatures.h | 29 …gralHistogram(const cv::Mat &img, std::vector<cv::Mat> &histogram, cv::Mat &norm, int nbins) const;
|
/external/opencv3/modules/cudaobjdetect/src/ |
D | hog.cpp | 58 void set_up_constants(int nbins, int block_stride_x, int block_stride_y, 61 void compute_hists(int nbins, int block_stride_x, int blovck_stride_y, 65 void normalize_hists(int nbins, int block_stride_x, int block_stride_y, 84 … void compute_gradients_8UC1(int nbins, int height, int width, const cv::cuda::PtrStepSzb& img, 86 … void compute_gradients_8UC4(int nbins, int height, int width, const cv::cuda::PtrStepSzb& img, 105 int nbins); 185 int nbins) : in HOG_Impl() argument 190 nbins_(nbins), in HOG_Impl() 539 int nbins) in create() argument 541 return makePtr<HOG_Impl>(win_size, block_size, block_stride, cell_size, nbins); in create()
|
/external/jemalloc/src/ |
D | stats.c | 55 unsigned nbins, j; in stats_arena_bins_print() local 72 CTL_GET("arenas.nbins", &nbins, unsigned); in stats_arena_bins_print() 73 for (j = 0, in_gap = false; j < nbins; j++) { in stats_arena_bins_print() 164 unsigned nbins, nlruns, j; in stats_arena_lruns_print() local 170 CTL_GET("arenas.nbins", &nbins, unsigned); in stats_arena_lruns_print() 196 run_size, nbins + j, curruns * run_size, nmalloc, in stats_arena_lruns_print() 210 unsigned nbins, nlruns, nhchunks, j; in stats_arena_hchunks_print() local 216 CTL_GET("arenas.nbins", &nbins, unsigned); in stats_arena_hchunks_print() 244 hchunk_size, nbins + nlruns + j, in stats_arena_hchunks_print()
|
/external/opencv3/modules/cudaobjdetect/src/cuda/ |
D | hog.cu | 90 void set_up_constants(int nbins, int block_stride_x, int block_stride_y, in set_up_constants() argument 93 cudaSafeCall( cudaMemcpyToSymbol(cnbins, &nbins, sizeof(nbins)) ); in set_up_constants() 99 int block_hist_size = nbins * CELLS_PER_BLOCK_X * CELLS_PER_BLOCK_Y; in set_up_constants() 195 void compute_hists(int nbins, int block_stride_x, int block_stride_y, in compute_hists() argument 215 … int hists_size = (nbins * CELLS_PER_BLOCK_X * CELLS_PER_BLOCK_Y * 12 * nblocks) * sizeof(float); in compute_hists() 216 … int final_hists_size = (nbins * CELLS_PER_BLOCK_X * CELLS_PER_BLOCK_Y * nblocks) * sizeof(float); in compute_hists() 295 void normalize_hists(int nbins, int block_stride_x, int block_stride_y, in normalize_hists() argument 300 int block_hist_size = nbins * CELLS_PER_BLOCK_X * CELLS_PER_BLOCK_Y; in normalize_hists() 655 void compute_gradients_8UC4(int nbins, int height, int width, const PtrStepSzb& img, in compute_gradients_8UC4() argument 658 (void)nbins; in compute_gradients_8UC4() [all …]
|
/external/jemalloc/include/jemalloc/internal/ |
D | size_classes.sh | 103 nbins=0 116 nbins=$((${index} + 1)) 161 nbins=$((${index} + 1)) 239 echo "#define NBINS ${nbins}"
|
/external/opencv3/modules/features2d/src/kaze/ |
D | nldiffusion_functions.cpp | 211 float compute_k_percentile(const cv::Mat& img, float perc, float gscale, int nbins, int ksize_x, in… in compute_k_percentile() argument 219 std::vector<int> hist(nbins, 0); in compute_k_percentile() 256 nbin = (int)floor(nbins*(sqrt(modg) / hmax)); in compute_k_percentile() 258 if (nbin == nbins) { in compute_k_percentile() 271 for (k = 0; nelements < nthreshold && k < nbins; k++) { in compute_k_percentile() 279 kperc = hmax*((float)(k) / (float)nbins); in compute_k_percentile()
|
D | nldiffusion_functions.h | 29 float compute_k_percentile(const cv::Mat& img, float perc, float gscale, int nbins, int ksize_x, in…
|
/external/opencv3/modules/objdetect/test/ |
D | test_cascadeandhog.cpp | 662 int i, j, nbins = descriptor->nbins; in init() local 668 blockHistogramSize = ncells.width*ncells.height*nbins; in init() 741 data->histOfs[0] = (icellX0*ncells.height + icellY0)*nbins; in init() 743 data->histOfs[1] = (icellX1*ncells.height + icellY0)*nbins; in init() 745 data->histOfs[2] = (icellX0*ncells.height + icellY1)*nbins; in init() 747 data->histOfs[3] = (icellX1*ncells.height + icellY1)*nbins; in init() 758 data->histOfs[0] = (icellX0*ncells.height + icellY1)*nbins; in init() 760 data->histOfs[1] = (icellX1*ncells.height + icellY1)*nbins; in init() 778 data->histOfs[0] = (icellX1*ncells.height + icellY0)*nbins; in init() 780 data->histOfs[1] = (icellX1*ncells.height + icellY1)*nbins; in init() [all …]
|
/external/opencv3/modules/objdetect/include/opencv2/ |
D | objdetect.hpp | 346 cellSize(8,8), nbins(9), derivAperture(1), winSigma(-1), in HOGDescriptor() 357 nbins(_nbins), derivAperture(_derivAperture), winSigma(_winSigma), in HOGDescriptor() 425 CV_PROP int nbins; member
|
/external/opencv3/modules/calib3d/src/ |
D | quadsubpix.cpp | 170 const int nbins = 256; in find4QuadCornerSubpix() local 182 calcHist(&img_roi, 1, &channels, Mat(), hist, 1, &nbins, &_ranges); in find4QuadCornerSubpix()
|
/external/opencv3/modules/cudaobjdetect/include/opencv2/ |
D | cudaobjdetect.hpp | 99 int nbins = 9);
|
/external/opencv3/modules/java/src/ |
D | objdetect.cpp | 1164 int _retval_ = me->nbins;//( ); in Java_org_opencv_objdetect_HOGDescriptor_get_1nbins_10()
|