Searched refs:xmat (Results 1 – 2 of 2) sorted by relevance
/external/opencv/cxcore/src/ |
D | cxmathfuncs.cpp | 329 CvMat xstub, *xmat = (CvMat*)xarr; in cvCartToPolar() local 339 if( !CV_IS_MAT(xmat)) in cvCartToPolar() 340 CV_CALL( xmat = cvGetMat( xmat, &xstub, &coi1 )); in cvCartToPolar() 345 if( !CV_ARE_TYPES_EQ( xmat, ymat ) ) in cvCartToPolar() 348 if( !CV_ARE_SIZES_EQ( xmat, ymat ) ) in cvCartToPolar() 351 depth = CV_MAT_DEPTH( xmat->type ); in cvCartToPolar() 359 if( !CV_ARE_TYPES_EQ( mag, xmat ) ) in cvCartToPolar() 362 if( !CV_ARE_SIZES_EQ( mag, xmat ) ) in cvCartToPolar() 371 if( !CV_ARE_TYPES_EQ( angle, xmat ) ) in cvCartToPolar() 374 if( !CV_ARE_SIZES_EQ( angle, xmat ) ) in cvCartToPolar() [all …]
|
/external/opencv3/modules/cudaarithm/src/cuda/ |
D | polar_cart.cu | 161 …Impl(const GlobPtr<float> mag, const GlobPtr<float> angle, GlobPtr<float> xmat, GlobPtr<float> yma… in polarToCartImpl() argument 175 xmat(y, x) = mag_val * cos_a; in polarToCartImpl()
|