-1

我有兴趣从文件中读取 CvPoint* 类型的点,但我尝试了标准符号 (x,y)。当我尝试验证输出时,它给出了不正确的值。在文件中读取 CvPoint 的格式是什么。

点.txt

(1,1)

主文件

points  = (CvPoint*)malloc(length*sizeof(CvPoint*));
points1 = (CvPoint*)malloc(length*sizeof(CvPoint*));
points2 = (CvPoint*)malloc(length*sizeof(CvPoint*));
fp = fopen(points.txt, "r");
fscanf(fp, "%d", &(length));
printf("%d  \n", length);
i = 1;
while(i <= length)
{
  fscanf(fp, "%d", &(points[i].x));
  fscanf(fp, "%d", &(points[i].y));
  printf("%d  %d \n",points[i].x, points[i].y);
  i++;
}

它打印:

1


12  0
4

1 回答 1

0

这是对文本文件使用相同格式的另一种方法:

#include <iostream>
#include <fstream>
#include <opencv2/core/core.hpp>

using namespace std;
using namespace cv;

int main(int argc, char* argv[]) {
    ifstream file("points.txt");
    string line;
    size_t start, end;
    Point2f point;
    while (getline(file, line)) {
         start = line.find_first_of("(");
     end = line.find_first_of(",");
     point.x = atoi(line.substr(start + 1, end).c_str());
     start = end;
     end = line.find_first_of(")");
     point.y = atoi(line.substr(start + 1, end - 1).c_str());
     cout << "x, y: " << point.x << ", " << point.y << endl;
    }
    return 0;
}
于 2013-02-13T21:40:05.360 回答