/external/opencv/cv/src/ |
D | cvcalcimagehomography.cpp | 60 CvMat rx = cvMat( 1, 3, CV_32F, line ); in cvCalcImageHomography() 61 CvMat ry = cvMat( 1, 3, CV_32F, _ry ); in cvCalcImageHomography() 62 CvMat rz = cvMat( 1, 3, CV_32F, _rz ); in cvCalcImageHomography() 63 CvMat r_trans = cvMat( 3, 3, CV_32F, _r_trans ); in cvCalcImageHomography() 64 CvMat center = cvMat( 3, 1, CV_32F, _center ); in cvCalcImageHomography() 67 CvMat sub = cvMat( 3, 3, CV_32F, _sub ); in cvCalcImageHomography() 69 CvMat t_trans = cvMat( 3, 1, CV_32F, _t_trans ); in cvCalcImageHomography() 71 CvMat intrinsic = cvMat( 3, 3, CV_32F, _intrinsic ); in cvCalcImageHomography() 72 CvMat homography = cvMat( 3, 3, CV_32F, _homography ); in cvCalcImageHomography()
|
D | cvlinefit.cpp | 190 CvMat _det = cvMat( 3, 3, CV_32F, det ); in icvFitLine3D_wods() 191 CvMat _evc = cvMat( 3, 3, CV_32F, evc ); in icvFitLine3D_wods() 192 CvMat _evl = cvMat( 3, 1, CV_32F, evl ); in icvFitLine3D_wods() 198 CvMat _det = cvMat( 3, 3, CV_32F, det ); in icvFitLine3D_wods() 199 CvMat _evc = cvMat( 3, 3, CV_32F, evc ); in icvFitLine3D_wods() 200 CvMat _evl = cvMat( 1, 3, CV_32F, evl ); in icvFitLine3D_wods() 688 if( CV_MAT_DEPTH(type) == CV_32F && ptseq->first->next == ptseq->first ) in cvFitLine() 698 if( CV_MAT_DEPTH(type) != CV_32F ) in cvFitLine()
|
D | cvundistort.cpp | 121 CvMat _a = cvMat( 3, 3, CV_32F, a ), _k; in cvUndistort2() 158 CV_MAT_DEPTH(dist_coeffs->type) != CV_32F) ) in cvUndistort2() 164 CV_MAKETYPE(CV_32F, CV_MAT_CN(dist_coeffs->type)), k ); in cvUndistort2() 191 CvMat _a = cvMat( 3, 3, CV_32F, a ), _k; in cvInitUndistortMap() 221 CV_MAT_DEPTH(dist_coeffs->type) != CV_32F) ) in cvInitUndistortMap() 227 CV_MAKETYPE(CV_32F, CV_MAT_CN(dist_coeffs->type)), k ); in cvInitUndistortMap() 328 CV_MAT_DEPTH(distCoeffs->type) == CV_32F) ); in cvInitUndistortRectifyMap()
|
D | cvderiv.cpp | 386 int work_depth = dst_depth < CV_32F ? CV_32S : CV_32F; in get_work_params() 413 if( ((src_depth != CV_8U || (dst_depth != CV_16S && dst_depth != CV_32F)) && in init() 414 (src_depth != CV_32F || dst_depth != CV_32F)) || in init() 423 CV_CALL( kx = cvCreateMat( 1, _ksize, CV_32F )); in init() 424 CV_CALL( ky = cvCreateMat( 1, _ksize, CV_32F )); in init() 440 else if( dst_depth == CV_32F ) in init() 446 else if( src_depth == CV_32F ) in init() 448 if( dst_depth == CV_32F ) in init()
|
D | _cvmatrix.h | 375 CvMat srcMat = cvMat( height, width, CV_32F, src ); in icvMulTransMatrixR_32f() 376 CvMat dstMat = cvMat( width, width, CV_32F, dst ); in icvMulTransMatrixR_32f() 383 CvMat srcMat = cvMat( height, width, CV_32F, src ); in icvMulTransMatrixL_32f() 384 CvMat dstMat = cvMat( height, height, CV_32F, dst ); in icvMulTransMatrixL_32f()
|
D | cvsurf.cpp | 273 const int descriptor_data_type = CV_32F; in cvExtractSURF() 281 CvMat _G = cvMat(1, 9, CV_32F, G); in cvExtractSURF() 283 CvMat _DW = cvMat(PATCH_SZ, PATCH_SZ, CV_32F, DW); in cvExtractSURF() 350 CvMat _X = cvMat(1, 81, CV_32F, X); in cvExtractSURF() 351 CvMat _Y = cvMat(1, 81, CV_32F, Y); in cvExtractSURF() 352 CvMat _angle = cvMat(1, 81, CV_32F, angle); in cvExtractSURF() 469 CvMat W = cvMat(2, 3, CV_32F, w); in cvExtractSURF()
|
D | cvfeatureselect.cpp | 129 if( CV_MAT_DEPTH(tmp->type) != CV_32F || in CV_IMPLEMENT_QSORT() 130 CV_MAT_DEPTH(eig->type) != CV_32F ) in CV_IMPLEMENT_QSORT()
|
D | _cv.h | 93 #define CV_HIST_DEFAULT_TYPE CV_32F
|
D | cvcorner.cpp | 240 d_depth = depth == CV_8U ? CV_16S : CV_32F; in icvCornerEigenValsVecs() 256 else if( depth == CV_32F && aperture_size0 == CV_SCHARR ) in icvCornerEigenValsVecs() 266 else if( depth == CV_32F ) in icvCornerEigenValsVecs() 298 CV_CALL( sqrt_buf = cvCreateMat( 2, size.width, CV_32F )); in icvCornerEigenValsVecs() 549 d_depth = depth == CV_8U ? CV_16S : CV_32F; in cvPreCornerDetect() 567 else if( depth == CV_32F ) in cvPreCornerDetect()
|
D | cvtemplmatch.cpp | 62 int depth, templ_depth, corr_depth, max_depth = CV_32F, in icvCrossCorr() 72 CV_MAT_DEPTH( img->type ) != CV_32F ) in icvCrossCorr() 76 if( !CV_ARE_DEPTHS_EQ( img, templ ) && CV_MAT_DEPTH( templ->type ) != CV_32F ) in icvCrossCorr() 80 if( !CV_ARE_DEPTHS_EQ( img, corr ) && CV_MAT_DEPTH( corr->type ) != CV_32F && in icvCrossCorr() 358 CV_MAT_DEPTH( img->type ) != CV_32F ) in cvMatchTemplate()
|
D | cvaccum.cpp | 365 tab->fn_2d[CV_32F] = (void*)icv##FUNCNAME##_32f_C1IR; \ 414 if( CV_MAT_DEPTH( sum->type ) != CV_32F ) 421 if( sumdepth != CV_32F && (maskarr != 0 || sumdepth != CV_64F)) 516 if( CV_MAT_DEPTH( sum->type ) != CV_32F ) in cvSquareAcc() 615 if( CV_MAT_DEPTH( sum->type ) != CV_32F ) in cvMultiplyAcc() 724 if( CV_MAT_DEPTH( sum->type ) != CV_32F ) in cvRunningAvg()
|
D | cvimgwarp.cpp | 564 bilin_tab->fn_2d[CV_32F] = (void*)icvResize_Bilinear_32f_CnR; in icvInitResizeTab() 568 bicube_tab->fn_2d[CV_32F] = (void*)icvResize_Bicubic_32f_CnR; in icvInitResizeTab() 572 areafast_tab->fn_2d[CV_32F] = (void*)icvResize_AreaFast_32f_CnR; in icvInitResizeTab() 576 area_tab->fn_2d[CV_32F] = (void*)icvResize_Area_32f_CnR; in icvInitResizeTab() 1052 bilin_tab->fn_2d[CV_32F] = (void*)icvWarpAffine_Bilinear_32f_CnR; in icvInitWarpAffineTab() 1108 CV_MAT_DEPTH(matrix->type) < CV_32F || matrix->rows != 2 || matrix->cols != 3 ) in cvWarpAffine() 1321 bilin_tab->fn_2d[CV_32F] = (void*)icvWarpPerspective_Bilinear_32f_CnR; in icvInitWarpPerspectiveTab() 1386 CV_MAT_DEPTH(matrix->type) < CV_32F || matrix->rows != 3 || matrix->cols != 3 ) in cvWarpPerspective() 1756 bilinear_tab->fn_2d[CV_32F] = (void*)icvRemap_Bilinear_32f_CnR; in icvInitRemapTab() 1760 bicubic_tab->fn_2d[CV_32F] = (void*)icvRemap_Bicubic_32f_CnR; in icvInitRemapTab() [all …]
|
D | cvkdtree.cpp | 72 case CV_32F: \ 73 { typedef CvKDTree<int, deref<float, CV_32F> > tree_type; c; break; } \
|
D | cvmotempl.cpp | 133 if( CV_MAT_DEPTH( mhi->type ) != CV_32F ) in cvUpdateMotionHistory() 213 CV_CALL( dX_min = cvCreateMat( mhi->rows, mhi->cols, CV_32F )); in cvCalcMotionGradient() 214 CV_CALL( dY_max = cvCreateMat( mhi->rows, mhi->cols, CV_32F )); in cvCalcMotionGradient()
|
D | cvmorph.cpp | 204 else if( depth == CV_32F ) in init() 217 else if( depth == CV_32F ) in init() 253 else if( depth == CV_32F ) in init() 263 else if( depth == CV_32F ) in init() 280 if( depth == CV_32F && border_mode == IPL_BORDER_CONSTANT ) in init() 328 if( CV_MAT_DEPTH(src_type) != CV_32F ) in fill_cyclic_buffer()
|
D | cvcalibration.cpp | 294 (CV_MAT_TYPE(A->type) == CV_32F || CV_MAT_TYPE(A->type) == CV_64F) ); in cvCalcMatMulDeriv() 314 if( CV_MAT_TYPE(A->type) == CV_32F ) in cvCalcMatMulDeriv() 398 CV_ASSERT( CV_MAT_TYPE(_rvec1->type) == CV_32F || in cvComposeRT() 510 if( depth != CV_32F && depth != CV_64F ) in cvRodrigues2() 540 if( depth == CV_32F ) in cvRodrigues2() 724 if( depth == CV_32F ) in cvRodrigues2() 740 if( depth == CV_32F ) in cvRodrigues2() 822 if( (CV_MAT_DEPTH(r_vec->type) != CV_64F && CV_MAT_DEPTH(r_vec->type) != CV_32F) || in cvProjectPoints2() 843 if( (CV_MAT_DEPTH(t_vec->type) != CV_64F && CV_MAT_DEPTH(t_vec->type) != CV_32F) || in cvProjectPoints2() 867 CV_MAT_DEPTH(distCoeffs->type) != CV_32F) || in cvProjectPoints2() [all …]
|
/external/opencv/cxcore/src/ |
D | cxsumpixels.cpp | 426 pass_hint = CV_MAT_DEPTH(type) == CV_32F; in CV_DEF_INIT_BIG_FUNC_TAB_2D() 513 int pass_hint = CV_MAT_DEPTH(type) == CV_32F; in CV_DEF_INIT_BIG_FUNC_TAB_2D() 934 sdepth == CV_8U && ddepth == CV_32F ? (CvReduceToRowFunc)icvSumRows_8u32f_C1R : in cvReduce() 935 sdepth == CV_16U && ddepth == CV_32F ? (CvReduceToRowFunc)icvSumRows_16u32f_C1R : in cvReduce() 937 sdepth == CV_16S && ddepth == CV_32F ? (CvReduceToRowFunc)icvSumRows_16s32f_C1R : in cvReduce() 939 sdepth == CV_32F && ddepth == CV_32F ? (CvReduceToRowFunc)icvSumRows_32f_C1R : in cvReduce() 940 … sdepth == CV_32F && ddepth == CV_64F ? (CvReduceToRowFunc)icvSumRows_32f64f_C1R : in cvReduce() 944 sdepth == CV_32F && ddepth == CV_32F ? (CvReduceToRowFunc)icvMaxRows_32f_C1R : in cvReduce() 948 sdepth == CV_32F && ddepth == CV_32F ? (CvReduceToRowFunc)icvMinRows_32f_C1R : in cvReduce() 967 sdepth == CV_8U && ddepth == CV_32F ? in cvReduce() [all …]
|
D | cxtables.cpp | 53 CV_32F, CV_32S, -1, -1, -1, -1, -1, -1, CV_64F, -1
|
D | cxmathfuncs.cpp | 352 if( depth < CV_32F ) in cvCartToPolar() 397 else if( depth == CV_32F && mag ) in cvCartToPolar() 402 if( depth == CV_32F ) in cvCartToPolar() 583 if( depth < CV_32F ) in cvPolarToCart() 645 if( depth == CV_32F ) in cvPolarToCart() 1044 if( !CV_ARE_CNS_EQ( src, dst ) || src_depth < CV_32F || dst_depth < src_depth ) in cvExp() 1603 if( !CV_ARE_CNS_EQ( src, dst ) || dst_depth < CV_32F || src_depth < dst_depth ) in cvLog() 1768 else if( depth < CV_32F ) in cvPow() 1799 (depth == CV_32F ? (CvSqrtFunc)icvInvSqrt_32f : (CvSqrtFunc)icvInvSqrt_64f) : in cvPow() 1800 (depth == CV_32F ? (CvSqrtFunc)icvSqrt_32f : (CvSqrtFunc)icvSqrt_64f); in cvPow() [all …]
|
D | cxconvert.cpp | 409 tab->fn_2d[CV_32F] = (void*)icvCopy##_32f_##FROM##TO##CR; \ 714 tab->fn_2d[CV_32F] = (void*)icvMixChannels_32s; in icvInitMixChannelsTab() 1039 case CV_32F: in icvCvtScaleAbsTo_8u_C1R() 1240 case CV_32F: \ 1312 case CV_32F: \ 1431 CV_32F, float, cvRound, 1439 CV_32F, float, cvRound, 1447 CV_32F, float, cvRound, 1455 CV_32F, float, cvRound, 1463 CV_32F, float, cvRound, [all …]
|
D | cxmatmul.cpp | 867 if( type == CV_32F ) in cvGEMM() 1056 if( CV_MAT_DEPTH(type) == CV_32F ) in cvGEMM() 1114 int work_elem_size = elem_size << (CV_MAT_DEPTH(type) == CV_32F ? 1 : 0); in cvGEMM() 1736 else if( CV_MAT_DEPTH( shift->type ) == CV_32F ) in cvTransform() 2005 tab2->fn_2d[CV_32F] = (void*)icvPerspectiveTransform_32f_C2R; \ in icvInitPerspectiveTransformTable() 2007 tab3->fn_2d[CV_32F] = (void*)icvPerspectiveTransform_32f_C3R; \ in icvInitPerspectiveTransformTable() 2365 tabfl->fn_2d[CV_32F] = (void*)icvDotProductShifted_32f_C1R; in icvInitDotProductShiftedTable() 2373 tabdb->fn_2d[CV_32F] = (void*)icvDotProductShifted_32f64f_C1R; in icvInitDotProductShiftedTable() 2432 tabfl->fn_2d[CV_32F] = (void*)icvExtProductShifted_32f_C1R; in icvInitExtProductShiftedTable() 2440 tabdb->fn_2d[CV_32F] = (void*)icvExtProductShifted_32f64f_C1R; in icvInitExtProductShiftedTable() [all …]
|
/external/opencv/cvaux/src/ |
D | cvmat.cpp | 66 case CV_32F: 100 case CV_32F: 128 case CV_32F: 168 case CV_32F: 208 case CV_32F: 404 if( CV_MAT_DEPTH(a->type) >= CV_32F && CV_MAT_CN(a->type) <= 2 ) 859 case CV_32F: if( !fmt )
|
/external/opencv/cv/include/ |
D | cvcompat.h | 250 CvMat mat = cvMat( 1, len, CV_32F, (void*)dst ); in cvbRand() 258 CvMat mx = cvMat( 1, len, CV_32F, (void*)x ); in cvbCartToPolar() 274 CvMat mx = cvMat( 1, len, CV_32F, (void*)x ); in cvbFastArctan() 287 CvMat mx = cvMat( 1, len, CV_32F, (void*)x ); in cvbSqrt() 297 CvMat mx = cvMat( 1, len, CV_32F, (void*)x ); in cvbInvSqrt() 307 CvMat mx = cvMat( 1, len, CV_32F, (void*)x ); in cvbReciprocal() 317 CvMat mx = cvMat( 1, len, CV_32F, (void*)x ); in cvbFastExp() 326 CvMat my = cvMat( 1, len, CV_32F, y ); in cvbFastLog() 468 CvMat M = cvMat( 2, 3, CV_32F, m ); 546 CvMat fundMatr = cvMat(3,3,CV_32F,matrix); in cvFindFundamentalMatrix() [all …]
|
/external/opencv/cxcore/include/ |
D | cxtypes.h | 473 #define CV_32F 5 macro 510 #define CV_32FC1 CV_MAKETYPE(CV_32F,1) 511 #define CV_32FC2 CV_MAKETYPE(CV_32F,2) 512 #define CV_32FC3 CV_MAKETYPE(CV_32F,3) 513 #define CV_32FC4 CV_MAKETYPE(CV_32F,4) 514 #define CV_32FC(n) CV_MAKETYPE(CV_32F,(n))
|
/external/opencv/ml/src/ |
D | mlann_mlp.cpp | 348 if( CV_MAT_TYPE( _src->type ) == CV_32F ) in scale_input() 376 if( CV_MAT_TYPE( _dst->type ) == CV_32F ) in scale_output() 591 double t = type == CV_32F ? (double)f[j] : d[j]; in calc_input_scale() 645 double t = type == CV_32F ? (double)f[j] : d[j]; in calc_output_scale() 958 if( x0.type == CV_32F ) in train_backprop() 992 if( u.type == CV_32F ) in train_backprop() 1144 if( x0.type == CV_32F ) in train_rprop() 1180 if( u.type == CV_32F ) in train_rprop()
|