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

  /external/opencv/cv/src/
cvkalman.cpp 179 CV_CALL( cvMatMulAdd( kalman->transition_matrix, kalman->state_post, 0, kalman->state_pre ));
183 CV_CALL( cvMatMulAdd( kalman->control_matrix, control, kalman->state_pre, kalman->state_pre ));
187 CV_CALL( cvMatMulAdd( kalman->transition_matrix, kalman->error_cov_post, 0, kalman->temp1 ));
214 CV_CALL( cvMatMulAdd( kalman->measurement_matrix,
230 CV_CALL( cvMatMulAdd( kalman->gain, kalman->temp5, kalman->state_pre, kalman->state_post ));
cvcalibration.cpp 460 cvMatMulAdd( &R2, &t1, &t2, &t3 );
    [all...]
  /external/opencv/cvaux/src/
cvmat.cpp 474 cvMatMulAdd( a, b, 0, this );
509 cvMatMulAdd( a, b, c, this );
cvepilines.cpp     [all...]
  /external/opencv/cxcore/include/
cxcore.h 703 #define cvMatMulAdd( src1, src2, src3, dst ) cvGEMM( (src1), (src2), 1., (src3), 1., (dst), 0 )
704 #define cvMatMul( src1, src2, dst ) cvMatMulAdd( (src1), (src2), NULL, (dst))
    [all...]
  /external/opencv/ml/src/
ml_inner_functions.cpp 175 cvMatMulAdd(vect, utmat, mean, vect);
251 cvMatMulAdd(vect, utmats[clss], means[clss], vect);
    [all...]
  /external/opencv/cv/include/
cvcompat.h 366 #define cvmMul( src1, src2, dst ) cvMatMulAdd( src1, src2, 0, dst )
    [all...]

Completed in 439 milliseconds