用C将点坐标写入txt文件
我有一组眼睛坐标,我想将它们保存到 C 语言(对于 OpenCV)中的文本文件中,如下所示:
254 234 344 434 这是第一组,包括左眼和右眼坐标 455 345 344 345 下一篇 等等..
I have a set of eye coordinates and I want to save them into a text file in C (For OpenCV) like this:
254 234 344 434 this is first set, including left and right eye co-ordinate
455 345 344 345 next one
and so on..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 fprintf 和循环。 当然,诸如“详细信息”之类的
内容会根据您获取数据的具体方式而有所不同。
Use fprintf and a loop. Something like
Details will vary depending on exactly how you have the data, of course.
尝试:
和
Try:
and
OpenCV 有自己的接口(C 和 C++ 版本),用于以 xml/yaml 格式编写文件:
XML/YAML 持久性 (C API)
OpenCV has own interface (both C and C++ versions) for writing files in xml/yaml formats:
XML/YAML Persistence (C API)