Home
last modified time | relevance | path

Searched refs:minloc (Results 1 – 3 of 3) sorted by relevance

/external/opencv/cxcore/src/
Dcxminmaxloc.cpp302 CvPoint minloc, maxloc; in CV_DEF_INIT_FUNC_TAB_2D() local
366 pmin, pmax, &minloc, &maxloc )); in CV_DEF_INIT_FUNC_TAB_2D()
376 pmin, pmax, &minloc, &maxloc )); in CV_DEF_INIT_FUNC_TAB_2D()
390 pmin, pmax, &minloc, &maxloc )); in CV_DEF_INIT_FUNC_TAB_2D()
401 pmin, pmax, &minloc, &maxloc )); in CV_DEF_INIT_FUNC_TAB_2D()
407 if( minloc.x >= mat->cols ) in CV_DEF_INIT_FUNC_TAB_2D()
409 minloc.y = minloc.x / mat->cols; in CV_DEF_INIT_FUNC_TAB_2D()
410 minloc.x -= minloc.y * mat->cols; in CV_DEF_INIT_FUNC_TAB_2D()
419 if( matmask && ((unsigned)minloc.x >= (unsigned)mat->cols || in CV_DEF_INIT_FUNC_TAB_2D()
420 (unsigned)minloc.y >= (unsigned)mat->rows || in CV_DEF_INIT_FUNC_TAB_2D()
[all …]
/external/eigen/Eigen/src/SparseLU/
DSparseLU_pruneL.h60 Index kmin = 0, kmax = 0, minloc, maxloc,krow; in pruneL() local
118 minloc = glu.xlusup(irep) + ( kmin - glu.xlsub(irep) ); in pruneL()
120 std::swap(glu.lusup(minloc), glu.lusup(maxloc)); in pruneL()
/external/opencv/cvaux/include/
Dcvmat.hpp499 double min( CvPoint* minloc = 0 ) const;
628 double min( CvPoint* minloc = 0 ) const;
1276 inline double CvMAT::min( CvPoint* minloc ) const
1279 cvMinMaxLoc( this, &t, 0, minloc, 0, 0 );
2114 inline double _CvMAT_BASE_OP_::min( CvPoint* minloc ) const
2115 { return ((CvMAT)*this).min( minloc ); }