Home | History | Annotate | Download | only in src

Lines Matching refs:uchar

91 static void icvErodeRectRow_8u( const uchar* src, uchar* dst, void* params );
94 static void icvDilateRectRow_8u( const uchar* src, uchar* dst, void* params );
98 static void icvErodeRectCol_8u( const uchar** src, uchar* dst, int dst_step,
104 static void icvDilateRectCol_8u( const uchar** src, uchar* dst, int dst_step,
111 static void icvErodeAny_8u( const uchar** src, uchar* dst, int dst_step,
117 static void icvDilateAny_8u( const uchar** src, uchar* dst, int dst_step,
234 CV_CALL( el_sparse = (uchar*)cvAlloc(
235 ksize.width*ksize.height*(2*sizeof(int) + sizeof(uchar*))));
321 int CvMorphology::fill_cyclic_buffer( const uchar* src, int src_step,
334 uchar* trow = is_separable ? buf_end : buf_tail;
357 const uchar *bt = (uchar*)border_tab;
423 uchar* ptr = element->data.ptr + i*element->step;
446 ptr[j] = (uchar)t;
512 ICV_MORPH_RECT_ROW( Erode, 8u, uchar, int, CV_CALC_MIN_8U )
513 ICV_MORPH_RECT_ROW( Dilate, 8u, uchar, int, CV_CALC_MAX_8U )
641 ICV_MORPH_RECT_COL( Erode, 8u, uchar, int, CV_CALC_MIN_8U, CV_NOP )
642 ICV_MORPH_RECT_COL( Dilate, 8u, uchar, int, CV_CALC_MAX_8U, CV_NOP )
715 ICV_MORPH_ANY( Erode, 8u, uchar, int, CV_CALC_MIN, CV_NOP )
716 ICV_MORPH_ANY( Dilate, 8u, uchar, int, CV_CALC_MAX, CV_NOP )
803 ( int width, const uchar* element, CvSize el_size,
1037 uchar *src_ptr, *dst_ptr = dst->data.ptr;
1040 uchar* el_mask = (uchar*)cvStackAlloc( el_len );
1044 el_mask[i] = (uchar)(element->values[i] != 0);
1060 uchar* t_ptr;