Lines Matching full:rows
150 if( !CV_IS_MAT(A) || A->rows != 3 || A->cols != 3 ||
154 if( !CV_IS_MAT(dist_coeffs) || (dist_coeffs->rows != 1 && dist_coeffs->cols != 1) ||
155 (dist_coeffs->rows*dist_coeffs->cols*CV_MAT_CN(dist_coeffs->type) != 4 &&
156 dist_coeffs->rows*dist_coeffs->cols*CV_MAT_CN(dist_coeffs->type) != 5) ||
163 _k = cvMat( dist_coeffs->rows, dist_coeffs->cols,
213 if( !CV_IS_MAT(A) || A->rows != 3 || A->cols != 3 ||
217 if( !CV_IS_MAT(dist_coeffs) || (dist_coeffs->rows != 1 && dist_coeffs->cols != 1) ||
218 (dist_coeffs->rows*dist_coeffs->cols*CV_MAT_CN(dist_coeffs->type) != 4 &&
219 dist_coeffs->rows*dist_coeffs->cols*CV_MAT_CN(dist_coeffs->type) != 5) ||
226 _k = cvMat( dist_coeffs->rows, dist_coeffs->cols,
297 if( !CV_IS_MAT(A) || A->rows != 3 || A->cols != 3 ||
308 if( !CV_IS_MAT(Ar) || Ar->rows != 3 || (Ar->cols != 3 && Ar->cols != 4) ||
317 if( !CV_IS_MAT(R) || R->rows != 3 || R->cols != 3 ||
324 (distCoeffs->rows == 1 || distCoeffs->cols == 1) &&
325 (distCoeffs->rows*distCoeffs->cols*CV_MAT_CN(distCoeffs->type) == 4 ||
326 distCoeffs->rows*distCoeffs->cols*CV_MAT_CN(distCoeffs->type) == 5) &&
329 _k = cvMat( distCoeffs->rows, distCoeffs->cols,
391 (_src->rows == 1 || _src->cols == 1) &&
392 (_dst->rows == 1 || _dst->cols == 1) &&
398 _cameraMatrix->rows == 3 && _cameraMatrix->cols == 3 &&
399 (_distCoeffs->rows == 1 || _distCoeffs->cols == 1) &&
400 (_distCoeffs->rows*_distCoeffs->cols == 4 ||
401 _distCoeffs->rows*_distCoeffs->cols == 5) );
402 _Dk = cvMat( _distCoeffs->rows, _distCoeffs->cols,
409 CV_ASSERT( CV_IS_MAT(_R) && _R->rows == 3 && _R->cols == 3 );
419 CV_ASSERT( CV_IS_MAT(_P) && _P->rows == 3 && (_P->cols == 3 || _P->cols == 4));
430 sstep = _src->rows == 1 ? 1 : _src->step/CV_ELEM_SIZE(stype);
431 dstep = _dst->rows == 1 ? 1 : _dst->step/CV_ELEM_SIZE(dtype);
433 n = _src->rows + _src->cols - 1;