Home
last modified time | relevance | path

Searched refs:ncells (Results 1 – 6 of 6) sorted by relevance

/external/opencv3/modules/videostab/src/
Doutlier_rejection.cpp84 Size ncells((frameSize.width + cellSize_.width - 1) / cellSize_.width, in process() local
91 grid_.assign(ncells.area(), Cell()); in process()
95 cx = std::min(cvRound(points0_[i].x / cellSize_.width), ncells.width - 1); in process()
96 cy = std::min(cvRound(points0_[i].y / cellSize_.height), ncells.height - 1); in process()
97 grid_[cy * ncells.width + cx].push_back(i); in process()
/external/opencv3/modules/objdetect/test/
Dtest_cascadeandhog.cpp622 Size nblocks, ncells; member
667 ncells = Size(blockSize.width/cellSize.width, blockSize.height/cellSize.height); in init()
668 blockHistogramSize = ncells.width*ncells.height*nbins; in init()
734 if( (unsigned)icellX0 < (unsigned)ncells.width && in init()
735 (unsigned)icellX1 < (unsigned)ncells.width ) in init()
737 if( (unsigned)icellY0 < (unsigned)ncells.height && in init()
738 (unsigned)icellY1 < (unsigned)ncells.height ) 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()
[all …]
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/
DbtSparseSDF.h71 int ncells; member
105 ncells =0; in Reset()
124 delete pc;pc=pp;--ncells;
187 ++ncells; in Evaluate()
189 if (ncells>m_clampCells) in Evaluate()
/external/opencv3/modules/objdetect/src/
Dhog.cpp518 Size nblocks, ncells; member
563 ncells = Size(blockSize.width/cellSize.width, blockSize.height/cellSize.height); in init()
564 blockHistogramSize = ncells.width*ncells.height*nbins; in init()
673 if( (unsigned)icellX0 < (unsigned)ncells.width && in init()
674 (unsigned)icellX1 < (unsigned)ncells.width ) in init()
676 if( (unsigned)icellY0 < (unsigned)ncells.height && in init()
677 (unsigned)icellY1 < (unsigned)ncells.height ) in init()
680 data->histOfs[0] = (icellX0*ncells.height + icellY0)*nbins; in init()
682 data->histOfs[1] = (icellX1*ncells.height + icellY0)*nbins; in init()
684 data->histOfs[2] = (icellX0*ncells.height + icellY1)*nbins; in init()
[all …]
/external/jemalloc/src/
Dckh.c441 size_t i, ncells; in ckh_iter() local
443 for (i = *tabind, ncells = (ZU(1) << (ckh->lg_curbuckets + in ckh_iter()
444 LG_CKH_BUCKET_CELLS)); i < ncells; i++) { in ckh_iter()
/external/libgdx/extensions/gdx-bullet/jni/swig-src/softbody/
Dsoftbody_wrap.cpp2902 if (arg1) (arg1)->ncells = arg2; in Java_com_badlogic_gdx_physics_bullet_softbody_SoftbodyJNI_btSparseSdf3_1ncells_1set()
2915 result = (int) ((arg1)->ncells); in Java_com_badlogic_gdx_physics_bullet_softbody_SoftbodyJNI_btSparseSdf3_1ncells_1get()