读取单值 HDF5 C++

read single value HDF5 C++

情况:

我尝试从 .hdf5 文件中读取一个值。

系统:

我的代码:

//File Path
hid_t H5_hid_RESULTS = H5Fcreate (V_FIn_HDF5_Path.absoluteFilePath().toUtf8().constData(), H5F_ACC_RDONLY, H5P_DEFAULT, H5P_DEFAULT);

//Status (Error Output?)
herr_t status;

//read dataset "heigth"
int32_t     heigth[1];
hid_t       H5_hid_heigth = H5Dopen1(H5_hid_RESULTS, "heigth");
status = H5Dread(H5_hid_heigth, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, heigth);
qDebug() << "heigth" << heigth[0];
status = H5Dclose(H5_hid_heigth);

//Close: file
status = H5Fclose (H5_hid_RESULTS);

目标 .hdf5 文件(在查看器中):

结果:

qDebug 打印一个随机数(例如:104610208)而不是预期的 512。

问题:

我试过的:

如文件查看器所示,您的 512 数据类型是 H5T_NATIVE_INT32 而不是 H5T_NATIVE_INT。换句话说,您正在尝试读取一个 64 位整数,而只有一个 32 位整数。这应该适合你:

status = H5Dread(H5_hid_heigth, H5T_NATIVE_INT32, 
                 H5S_ALL, H5S_ALL, H5P_DEFAULT, heigth);

我用一种完全不同但非常简单的方法解决了这个问题 example 这里。与 link 中的代码基本相同,但非常简化,因此 c++ 和 HDF5 的新手可以理解它:

//open file (My path is zensored, project from work)
const H5std_string  H5_Path_Results("C:/.../results.hdf5");
H5File              H5_File_Results(H5_Path_Results, H5F_ACC_RDONLY);

//open set
const H5std_string  H5_Nam_Height("height");
DataSet             H5_Set_Height = H5_File_Results.openDataSet(H5_Nam_Height);

//read set
int                 height[1];
H5_Set_Height.read(height, PredType::NATIVE_INT, H5S_ALL, H5S_ALL);
qDebug() << height[0];

//close set
H5_Set_Height.close();

//close file
H5_File_Results.close();

这给出了我想要读取的 512 作为输出。

当然需要#include <hdf5.h>#include <H5Cpp.h>,库必须添加到项目中并且.hdf5文件必须存在。