Home | History | Annotate | Download | only in src

Lines Matching full:cols

113     int i, count = _err->rows*_err->cols, goodCount = 0;
176 int count = m1->rows*m1->cols, maxGoodCount = 0;
271 int count = m1->rows*m1->cols;
361 int count = m1->cols*m1->rows;
446 int i, count = m1->rows*m1->cols;
509 int i, count = m1->rows*m1->cols;
527 int i, j, k, count = m1->rows*m1->cols;
530 CvMat modelPart = cvMat( solver.param->rows, solver.param->cols, model->type, model->data.ptr );
594 count = MAX(imagePoints->cols, imagePoints->rows);
606 (mask->rows == 1 || mask->cols == 1) &&
607 mask->rows*mask->cols == count );
630 M->cols = m->cols = count;
805 int i, j, k, count = _m1->cols*_m1->rows;
916 int i, count = _m1->rows*_m1->cols;
962 CV_ASSERT( CV_IS_MAT(fmatrix) && fmatrix->cols == 3 &&
965 count = MAX(points1->cols, points1->rows);
978 (mask->rows == 1 || mask->cols == 1) &&
979 mask->rows*mask->cols == count );
1009 m1->cols = m2->cols = count;
1052 if( points->rows > points->cols )
1054 dims = cn*points->cols;
1062 count = points->cols;
1074 if( fmatrix->cols != 3 || fmatrix->rows != 3 )
1085 if( lines->rows > lines->cols )
1087 abc_dims = abc_cn*lines->cols;
1095 abc_count = lines->cols;
1219 if( src->rows > src->cols )
1221 if( !((src->cols > 1) ^ (CV_MAT_CN(src->type) > 1)) )
1224 s_dims = CV_MAT_CN(src->type)*src->cols;
1233 s_count = src->cols;
1236 if( src->rows == 1 || src->cols == 1 )
1239 if( dst->rows > dst->cols )
1241 if( !((dst->cols > 1) ^ (CV_MAT_CN(dst->type) > 1)) )
1245 d_dims = CV_MAT_CN(dst->type)*dst->cols;
1255 d_count = dst->cols;
1258 if( dst->rows == 1 || dst->cols == 1 )
1292 if( src->rows == dst->rows && src->cols == dst->cols )
1303 CV_CALL( temp = cvCreateMat( src->rows, src->cols, dst->type ));
1319 CV_CALL( temp = cvCreateMat( src->rows, src->cols, dst->type ));
1326 if( s_count == src->cols )
1331 if( d_count == dst->cols )