Home | History | Annotate | Download | only in src

Lines Matching refs:dst_type

1331                         uchar* dst, int dst_step, int dst_type,
1340 dst_type = CV_MAT_TYPE(dst_type);
1342 if( CV_MAT_CN(src_type) != 1 || CV_MAT_CN(dst_type) != 1 )
1349 dst_step = CV_ELEM_SIZE(dst_type);
1354 CV_ELEM_SIZE(dst_type)*size.width == dst_step )
1360 if( src_type == dst_type )
1362 int full_width = CV_ELEM_SIZE(dst_type)*size.width;
1371 else if( src_type == CV_32SC1 && (dst_type == CV_32FC1 || dst_type == CV_64FC1) )
1375 if( dst_type == CV_32FC1 )
1382 else if( (src_type == CV_32FC1 || src_type == CV_64FC1) && dst_type == CV_32SC1 )
1393 else if( src_type == CV_32FC1 && dst_type == CV_64FC1 ||
1394 src_type == CV_64FC1 && dst_type == CV_32FC1 )