void DrawEpiLines(const Mat & img_1, const Mat & img_2, vector<Point2f>points1, vector<Point2f>points2); { cv::Mat F = cv::findFundamentalMat(points1, points2, FM_8POINT); //首先根据对应点计算出两视图的基础矩阵,基础矩阵包含了两个相机的外参数关系
这里多了一个分号
上一行{前面多了一个;