如何在现有 HDF5 文件上创建组? (HDF5)
我有一个用 C++ 编写的第三方实用程序,它创建带有单个数据组的 HDF5 文件。
我想导入两个 H5 文件,每个文件都有一个唯一的数据组,并输出一个包含两个数据组的 H5 文件。
有人有在 C# 中使用 HDF5 的经验吗?
I have a 3rd party utility written in C++ that creates an HDF5 file with a single data group.
I would like to import two H5 files each with a unique data group, and output a single H5 file with the two data groups.
Does anyone have experience with working with HDF5 in C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终只是编写了一个命令行实用程序来驱动预编译的 HDF5 实用程序。使用 H5Copy,您可以有选择地将组从一个 h5 文件复制到另一个 h5 文件。
I ended up just writing a command line utility that drives the precompiled HDF5 utilities. Using H5Copy you can selectively copy groups from one h5 file to another.