Lines Matching full:cols
678 if( ((flags&CV_GEMM_C_T) == 0 && (C->cols != D->cols || C->rows != D->rows)) ||
679 ((flags&CV_GEMM_C_T) != 0 && (C->rows != D->cols || C->cols != D->rows)))
701 a_size.width = A->cols;
703 d_size.width = D->cols;
711 B->cols != d_size.width ||
718 B->cols != d_size.width ||
723 len = B->cols;
730 len = B->cols;
1650 if( CV_IS_MAT_CONT(src->type) || (src->rows != 1 && src->cols != 1) )
1655 src->rows + src->cols + 1, &hdr, &block_hdr );
1660 if( CV_IS_MAT_CONT(dst->type) || (dst->rows != 1 && dst->cols != 1) )
1663 if( dst->rows + dst->cols - 1 != src_seq->total )
1668 dst->rows + dst->cols + 1, &hdr, &block_hdr );
1695 if( rot->cols == cn + 1 || rot->cols == cn )
1702 for( j = 0; j < rot->cols; j++ )
1711 for( j = 0; j < rot->cols; j++ )
1727 if( CV_MAT_CN( shift->type ) * shift->cols * shift->rows == dst_cn &&
1728 (shift->rows == 1 || shift->cols == 1) )
2068 if( mat->rows != cn + 1 && mat->cols != mat->rows )
2497 if( cov->rows != cov->cols )
2511 count = vecmat->cols;
2512 if( avg->cols != 1 || avg->rows != vecmat->rows )
2522 if( avg->rows != 1 || avg->cols != vecmat->cols )
2549 CV_CALL( tempvec = cvCreateMat( avg->rows, avg->cols, dsttype ));
2584 CV_CALL( tempvec = cvCreateMat( vec->rows, vec->cols, dsttype ));
2800 if( srcA->rows != 1 && srcA->cols != 1 )
2803 len = srcA->rows + srcA->cols - 1;
2808 if( mat->rows != len || mat->cols != len )
2833 temp = cvMat( srcA->rows, srcA->cols, srcA->type, buffer );
3142 (delta->cols != src->cols && delta->cols != 1) )
3150 delta->rows = delta->cols = 0;
3156 if( dst->rows != dst->cols )
3159 if( (order != 0 && src->cols != dst->cols) ||
3164 (dst->cols >= gemm_level && dst->rows >= gemm_level &&
3165 src->cols >= gemm_level && src->rows >= gemm_level)))
3169 CV_CALL( src2 = cvCreateMat( src->rows, src->cols, src->type ));
3212 delta->cols, scale ));