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

  /external/opencv/cv/src/
cvimgwarp.cpp     [all...]
  /external/opencv/cxcore/src/
cxcmp.cpp 785 int fillval = -1; local
787 fillval = cmp_op == CV_CMP_NE || cmp_op == CV_CMP_GE || cmp_op == CV_CMP_GT ? 255 : 0;
789 fillval = cmp_op == CV_CMP_NE || cmp_op == CV_CMP_LE || cmp_op == CV_CMP_LT ? 255 : 0;
790 if( fillval >= 0 )
792 fillval ^= invflag ? 255 : 0;
794 memset( dst->data.ptr + y*dst_step, fillval, size.width );
    [all...]
  /external/opencv/cvaux/include/
cvmat.hpp 419 CvMAT& operator = ( double fillval );
420 CvMAT& operator = ( const CvScalar& fillval );
1132 inline CvMAT& CvMAT::operator = ( double fillval )
1134 cvFillImage( this, fillval );
1139 inline CvMAT& CvMAT::operator = ( const CvScalar& fillval )
1141 cvSet( this, fillval );
    [all...]
  /external/opencv/cv/include/
cv.h 275 CvScalar fillval CV_DEFAULT(cvScalarAll(0)) );
289 CvScalar fillval CV_DEFAULT(cvScalarAll(0)) );
300 CvScalar fillval CV_DEFAULT(cvScalarAll(0)) );
    [all...]

Completed in 320 milliseconds