Home
last modified time | relevance | path

Searched refs:dst_type (Results 1 – 6 of 6) sorted by relevance

/external/opencv/cv/src/
Dcvderiv.cpp188 int src_type, dst_type; in cvSobel() local
201 dst_type = CV_MAT_TYPE( dst->type ); in cvSobel()
208 (src_type == CV_8UC1 && dst_type == CV_16SC1/* || in cvSobel()
338 CV_CALL( filter.init_deriv( src->cols, src_type, dst_type, dx, dy, in cvSobel()
385 int dst_depth = CV_MAT_DEPTH(dst_type); in get_work_params()
387 work_type = CV_MAKETYPE( work_depth, CV_MAT_CN(dst_type)*2 ); in get_work_params()
810 int src_type, dst_type; in cvLaplace() local
816 dst_type = CV_MAT_TYPE(dst->type); in cvLaplace()
819 (src_type == CV_8UC1 && dst_type == CV_16SC1/* || in cvLaplace()
869 CV_CALL( laplacian.init( src->cols, src_type, dst_type, in cvLaplace()
Dcvfilter.cpp104 int max_depth = MAX(CV_MAT_DEPTH(src_type), CV_MAT_DEPTH(dst_type)); in get_work_params()
105 int max_cn = MAX(CV_MAT_CN(src_type), CV_MAT_CN(dst_type)); in get_work_params()
136 _dst_type == dst_type && _is_separable == is_separable && in init()
144 dst_type = CV_MAT_TYPE(_dst_type); in init()
486 if( CV_MAT_TYPE(dst->type) != dst_type ) in process()
537 dptr = dst->data.ptr + dst_origin.y*dst->step + dst_origin.x*CV_ELEM_SIZE(dst_type); in process()
766 if( CV_MAT_DEPTH(dst_type) == CV_8U && in init()
775 else if( CV_MAT_DEPTH(dst_type) == CV_16S && in init()
785 if( CV_MAT_DEPTH(dst_type) > CV_32F ) in init()
796 if( CV_MAT_DEPTH(dst_type) > CV_32F ) in init()
[all …]
Dcvsmooth.cpp140 if( CV_MAT_DEPTH(dst_type) == CV_8U ) in init()
146 else if( CV_MAT_DEPTH(dst_type) == CV_16S ) in init()
152 else if( CV_MAT_DEPTH(dst_type) == CV_32S ) in init()
159 else if( CV_MAT_DEPTH(dst_type) == CV_32F ) in init()
1328 int src_type, dst_type, depth, cn; in cvSmooth() local
1339 dst_type = CV_MAT_TYPE( dst->type ); in cvSmooth()
1431 CV_CALL( box_filter.init( src->cols, src_type, dst_type, in cvSmooth()
1501 CV_CALL( gaussian_filter.init( src->cols, src_type, dst_type, &KX, &KY )); in cvSmooth()
/external/opencv/ml/src/
Dml_inner_functions.cpp1331 uchar* dst, int dst_step, int dst_type, in icvConvertDataToSparse() argument
1340 dst_type = CV_MAT_TYPE(dst_type); in icvConvertDataToSparse()
1342 if( CV_MAT_CN(src_type) != 1 || CV_MAT_CN(dst_type) != 1 ) in icvConvertDataToSparse()
1349 dst_step = CV_ELEM_SIZE(dst_type); in icvConvertDataToSparse()
1354 CV_ELEM_SIZE(dst_type)*size.width == dst_step ) in icvConvertDataToSparse()
1360 if( src_type == dst_type ) in icvConvertDataToSparse()
1362 int full_width = CV_ELEM_SIZE(dst_type)*size.width; in icvConvertDataToSparse()
1371 else if( src_type == CV_32SC1 && (dst_type == CV_32FC1 || dst_type == CV_64FC1) ) in icvConvertDataToSparse()
1375 if( dst_type == CV_32FC1 ) in icvConvertDataToSparse()
1382 else if( (src_type == CV_32FC1 || src_type == CV_64FC1) && dst_type == CV_32SC1 ) in icvConvertDataToSparse()
[all …]
/external/opencv/cv/include/
Dcv.hpp110 int get_dst_type() const { return dst_type; } in get_dst_type()
136 int min_depth, src_type, dst_type, work_type; member in CvBaseImageFilter
/external/v8/src/arm/
Dassembler-arm.cc2151 static Instr EncodeVCVT(const VFPType dst_type, in EncodeVCVT() argument
2157 ASSERT(src_type != dst_type); in EncodeVCVT()
2160 SplitRegCode(dst_type, dst_code, &Vd, &D); in EncodeVCVT()
2162 if (IsIntegerVFPType(dst_type) || IsIntegerVFPType(src_type)) { in EncodeVCVT()
2167 ASSERT(!IsIntegerVFPType(dst_type) || !IsIntegerVFPType(src_type)); in EncodeVCVT()
2171 if (IsIntegerVFPType(dst_type)) { in EncodeVCVT()
2172 opc2 = IsSignedVFPType(dst_type) ? 0x5 : 0x4; in EncodeVCVT()
2178 sz = IsDoubleVFPType(dst_type) ? 0x1 : 0x0; in EncodeVCVT()