HomeSort by relevance Sort by last modified time
    Searched refs:xmat (Results 1 - 2 of 2) sorted by null

  /external/opencv/cxcore/src/
cxmathfuncs.cpp 329 CvMat xstub, *xmat = (CvMat*)xarr; local
339 if( !CV_IS_MAT(xmat))
340 CV_CALL( xmat = cvGetMat( xmat, &xstub, &coi1 ));
345 if( !CV_ARE_TYPES_EQ( xmat, ymat ) )
348 if( !CV_ARE_SIZES_EQ( xmat, ymat ) )
351 depth = CV_MAT_DEPTH( xmat->type );
359 if( !CV_ARE_TYPES_EQ( mag, xmat ) )
362 if( !CV_ARE_SIZES_EQ( mag, xmat ) )
371 if( !CV_ARE_TYPES_EQ( angle, xmat ) )
569 CvMat xstub, *xmat = (CvMat*)xarr; local
    [all...]
  /external/opencv3/modules/cudaarithm/src/cuda/
polar_cart.cu 161 __global__ void polarToCartImpl(const GlobPtr<float> mag, const GlobPtr<float> angle, GlobPtr<float> xmat, GlobPtr<float> ymat, const float scale, const int rows, const int cols)
175 xmat(y, x) = mag_val * cos_a;

Completed in 565 milliseconds