Home | History | Annotate | Download | only in src

Lines Matching full:rows

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 );
805 int i, j, k, count = _m1->cols*_m1->rows;
916 int i, count = _m1->rows*_m1->cols;
963 (fmatrix->rows == 3 || (fmatrix->rows == 9 && method == CV_FM_7POINT)) );
965 count = MAX(points1->cols, points1->rows);
978 (mask->rows == 1 || mask->cols == 1) &&
979 mask->rows*mask->cols == count );
1015 cvConvert( fmatrix->rows == 3 ? &_F3x3 : &_F9x3, fmatrix );
1052 if( points->rows > points->cols )
1055 count = points->rows;
1059 if( (points->rows > 1 && cn > 1) || (points->rows == 1 && cn == 1) )
1061 dims = cn * points->rows;
1074 if( fmatrix->cols != 3 || fmatrix->rows != 3 )
1085 if( lines->rows > lines->cols )
1088 abc_count = lines->rows;
1092 if( (lines->rows > 1 && abc_cn > 1) || (lines->rows == 1 && abc_cn == 1) )
1094 abc_dims = abc_cn * lines->rows;
1107 if( points->rows == dims )
1115 stride = points->rows == 1 ? dims*elem_size : points->step;
1118 if( lines->rows == 3 )
1126 abc_stride = lines->rows == 1 ? 3*abc_elem_size : lines->step;
1219 if( src->rows > src->cols )
1222 CV_ERROR( CV_StsBadSize, "Either the number of channels or columns or rows must be =1" );
1225 s_count = src->rows;
1229 if( !((src->rows > 1) ^ (CV_MAT_CN(src->type) > 1)) )
1230 CV_ERROR( CV_StsBadSize, "Either the number of channels or columns or rows must be =1" );
1232 s_dims = CV_MAT_CN(src->type)*src->rows;
1236 if( src->rows == 1 || src->cols == 1 )
1239 if( dst->rows > dst->cols )
1243 "Either the number of channels or columns or rows in the input matrix must be =1" );
1246 d_count = dst->rows;
1250 if( !((dst->rows > 1) ^ (CV_MAT_CN(dst->type) > 1)) )
1252 "Either the number of channels or columns or rows in the output matrix must be =1" );
1254 d_dims = CV_MAT_CN(dst->type)*dst->rows;
1258 if( dst->rows == 1 || dst->cols == 1 )
1278 if( d_count == dst->rows )
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 ));