存储照片\视频注释数据的最佳位置
我知道如何保存照片\视频注释数据\文本。问题是存储它们的最佳位置是什么?
我可以在数据库中创建另一列,用于存储其他照片信息。
或者
我看到有些人将它们作为 xml 存储在 JPEG 标头中。听起来很奇怪,但我可能是错的。
还有其他可能更好的选择吗?
如果您有使用图像\视频注释的经验,请分享您的想法。
谢谢
编辑: 我使用 C# .NET 4.0
I know how to persist photo\video annotations data\text. The problem is what is the best place to store them?
I can create another column in the database where I store other photo info.
OR
I see some people storing them as xml in the JPEG header. Sounds weird but I might be wrong.
Any other option which might be better?
If you have experience with working with image\video annotations, please share your thoughts.
Thanks
EDIT:
I use C# .NET 4.0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 EXIF 标签来存储我们从各种传感器阵列存储的照片(JPG 文件)的一些元数据。具体来说,是我放置在“用户评论”字段中的专有数据字符串。您没有提到编程语言的选择,但作为示例,我在C# 应用程序。
我无法评论视频注释的最佳实践。
I use EXIF tags to store some metadata about photos (JPG files) we store from various sensor arrays. Specifically, a proprietary string of data which I place in the User Comment field. You didn't mention a programming language choice, but as an example, I use the ExifUtils library in a C# application.
I cannot comment as to best practices with video annotations.