我相信很多人会因此而苦恼,下面给出解决方案。
先给出如何读取hdf5文件把,假设文件里头有一个field为data,那么可以这么读。
require 'hdf5';
myFile=hdf5.open('path_to_hdf5_file','r') -- 读入HDF5文件
data=myFile:read('data'):all()
存储的时候要存储为字符数组,转换为字符数组存储
读取的时候要用
local ffi = require 'ffi'
imgname = ffi.string(imgname:char():data)
没啦,小技巧。
转载请注明出处:http://blog.csdn.net/xizero00