gpt4 book ai didi

c - 用C将点坐标写入txt文件

转载 作者:行者123 更新时间:2023-11-30 19:24:12 25 4
gpt4 key购买 nike

我有一组眼睛坐标,我想将它们保存到 C 语言(对于 OpenCV)中的文本文件中,如下所示:

254 234 344 434 这是第一组,包括左眼和右眼坐标455 345 344 345 下一篇等等..

最佳答案

使用 fprintf 和循环。类似的东西

file = fopen("myfile.txt", "w");
for (i = 0; i < num_coords; ++i)
{
fprintf(file, "%d %d %d %d\n", coords[i].left_x, coords[i].left_y, coords[i].right_x, coords[i].right_y);
}
fclose(file);

当然,详细信息会根据您获取数据的具体方式而有所不同。

关于c - 用C将点坐标写入txt文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6973296/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com