Home | History | Annotate | Download | only in src

Lines Matching full:rows

78     if( (labels->rows != 1 && (labels->cols != 1 || !CV_IS_MAT_CONT(labels->type))) ||
79 labels->rows + labels->cols - 1 != samples->rows )
81 "cluster_idx should be 1D vector of the same number of elements as samples' number of rows" );
86 sample_count = samples->rows;
289 coeff_count = coeffs->rows + coeffs->cols - 1;
291 if( (coeffs->rows != 1 && coeffs->cols != 1) || (coeff_count != 3 && coeff_count != 4) )
295 if( (roots->rows != 1 && roots->cols != 1) ||
296 roots->rows + roots->cols - 1 != 3 )
303 if( coeffs->rows > 1 )
314 if( coeffs->rows > 1 )
391 if( roots->rows > 1 )
400 if( roots->rows > 1 )
657 m = a->rows * a->cols;
658 n = r->rows * r->cols;
666 CvMat _a = cvMat( a->rows, a->cols, CV_64F, ad );
680 CvMat _r = cvMat( r->rows, r->cols, CV_64F, rd );
713 s->cols*s->rows <= CV_MAX_INLINE_MAT_OP_SIZE*CV_MAX_INLINE_MAT_OP_SIZE )
715 int i, len = s->cols*s->rows;
798 CV_CALL( tmp = cvCreateMat(dmat->rows, dmat->cols, dmat->type) );
835 arr_size = cols*mat->rows;
918 int rows, cols;
923 rows = mat->rows;
926 delta = (end-start)/(rows*cols);
930 cols *= rows;
931 rows = 1;
945 for( i = 0; i < rows; i++, idata += step )
951 for( i = 0; i < rows; i++, idata += step )
959 for( i = 0; i < rows; i++, fdata += step )
1119 len = src->rows;
1130 dptr += dstep*(src->rows - 1);
1132 idxptr += istep*(src->rows - 1);
1158 int j, t, count = src->rows;