Home | History | Annotate | Download | only in src

Lines Matching refs:src_type

133     if( CV_MAT_DEPTH(src_type) == CV_8U )
135 else if( CV_MAT_DEPTH(src_type) == CV_32F )
148 if( normalized || CV_MAT_DEPTH(src_type) != CV_8U )
154 if( normalized || CV_MAT_DEPTH(src_type) != CV_8U )
161 if( CV_MAT_DEPTH(src_type) != CV_32F )
181 s = sum = buf_end + cvAlign((width + ksize.width - 1)*CV_ELEM_SIZE(src_type), ALIGN);
1328 int src_type, dst_type, depth, cn;
1338 src_type = CV_MAT_TYPE( src->type );
1340 depth = CV_MAT_DEPTH(src_type);
1341 cn = CV_MAT_CN(src_type);
1387 src_type == CV_8UC1 ? icvFilterBox_8u_C1R_p :
1388 src_type == CV_8UC3 ? icvFilterBox_8u_C3R_p :
1389 src_type == CV_8UC4 ? icvFilterBox_8u_C4R_p :
1390 src_type == CV_32FC1 ? icvFilterBox_32f_C1R_p :
1391 src_type == CV_32FC3 ? icvFilterBox_32f_C3R_p :
1392 src_type == CV_32FC4 ? icvFilterBox_32f_C4R_p : 0;
1397 src_type == CV_8UC1 ? icvFilterMedian_8u_C1R_p :
1398 src_type == CV_8UC3 ? icvFilterMedian_8u_C3R_p :
1399 src_type == CV_8UC4 ? icvFilterMedian_8u_C4R_p : 0;
1415 el_anchor.y*temp->step + el_anchor.x*CV_ELEM_SIZE(src_type);
1431 CV_CALL( box_filter.init( src->cols, src_type, dst_type,
1501 CV_CALL( gaussian_filter.init( src->cols, src_type, dst_type, &KX, &KY ));
1509 switch( src_type )