Home | History | Annotate | Download | only in src

Lines Matching refs:fillval

785             int fillval = -1;
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 );