Home | History | Annotate | Download | only in src

Lines Matching refs:t_vec

769                   const CvMat* t_vec,
796 !CV_IS_MAT(t_vec) || !CV_IS_MAT(A) ||
843 if( (CV_MAT_DEPTH(t_vec->type) != CV_64F && CV_MAT_DEPTH(t_vec->type) != CV_32F) ||
844 (t_vec->rows != 1 && t_vec->cols != 1) ||
845 t_vec->rows*t_vec->cols*CV_MAT_CN(t_vec->type) != 3 )
849 _t = cvMat( t_vec->rows, t_vec->cols, CV_MAKETYPE(CV_64F,CV_MAT_CN(t_vec->type)), t );
850 CV_CALL( cvConvert( t_vec, &_t ));