How can I import a lzf compressed HDF5 dataset in Matlab?

43 visualizaciones (últimos 30 días)
Hello I try to open a lzf compressed HDF5 dataset in Matlab with h5read but I only get the below error.
Error using h5readc
The HDF5 library encountered an error and produced the following
stack trace information:
H5PL__find can't open directory
H5PL_load search in paths failed
H5Z_pipeline required filter 'lzf' is not registered
H5D__chunk_lock data pipeline read failed
H5D__chunk_read unable to read raw data chunk
H5D__read can't read data
H5Dread can't read data
Error in h5read (line 58)
[data,var_class] = h5readc(Filename,Dataset,start,count,stride);||
I also tried hdf5read but the same...
Error using hdf5readc
Reading from the dataset failed.
Error in hdf5read (line 95)
[data, attributes] = hdf5readc(settings.filename, ...
Does anybody has a good idea how to access lzf compressed datasets in hdf5 files? Thank you

Respuesta aceptada

Harish Ramachandran
Harish Ramachandran el 12 de Abr. de 2018
As of R2015a, MATLAB upgraded to HDF5 1.8.12 and thus now supports reading HDF5 datasets via the new dynamically loaded filter feature (which includes LZF compression).
To use a custom filter, you must have the third-party filter as a shared library or DLL on your system and then set the HDF5_PLUGIN_PATH environment variable to point to the shared libraries. Note that if you are using Windows, there may be additional steps required to ensure compatibility between the CRT (C Run-time Libraries) of the Visual Studio builds of HDF5 and the third-party filter.
For releases prior to R2015a, MATLAB does not support LZF compression filters.
The high-level functions can be used to read HDF5 files with compression filters. To return information about the compression filter used, and other metadata about the file, use ' h5info'. To read the file, assuming that the compression filter used is supported by MATLAB, call ' h5read', and the decompression will be done automatically.

Más respuestas (3)

Suzanne Onstwedder
Suzanne Onstwedder el 2 de Mayo de 2020
Editada: Suzanne Onstwedder el 5 de Mayo de 2020
Install Microsoft C++ runtime environment
  1. Make sure you have the latest Microsoft C++ runtime environment installed. (Go to https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads for the appropriate installer).
  2. Just install it the normal way, following the prompt instructions.
Install third party LZF plugin
  1. Download the plugin (all the way at the bottom) from https://www.hdfgroup.org/downloads/hdf5/
  2. Open and install the ‘h5pl-1.12.0-win64.msi’file.
  3. Just install it the normal way, following the prompt instructions. If you install it in an alternative location, copy that path. Standard is ‘C:\Program Files\HDF_Group\HDF5\1.12.0’
Add HDF5_plugin_path to windows
  1. Open Control panel
  2. Open system and security
  3. Open system
  4. Open Advanced settings, located in the most left column
  5. Click ‘Environment variables’ (‘omgevingsvariabelen’)
  6. Click the Top ‘New’ and add exactly the same following three variables (See image)
  7. For copy purpose C:\Program Files\HDF_Group\HDF5\1.12.0\lib\plugin
Restart matlab

Reynaud Lucile
Reynaud Lucile el 12 de Sept. de 2019
Hello,
I have the same question as Gerrit H, I would like to open a lzf compressed HDF5 file.
My MATLAB is the 2019 version so it should be able to open LZF compressions according to your answer.
Error using h5readc
The HDF5 library encountered an error and produced the following stack trace
information:
H5PL__find can't open directory
H5PL_load search in paths failed
H5Z_pipeline required filter 'lzf' is not registered
H5D__chunk_lock data pipeline read failed
H5D__chunk_read unable to read raw data chunk
H5D__read can't read data
H5Dread can't read data
Error in h5read (line 66)
[data,var_class] = h5readc(Filename,Dataset,start,count,stride);
I went on the website for the lzf librairy http://oldhome.schmorp.de/marc/liblzf.html . I downloaded their content liblzf-3.6.tar.gz.sig but I don't know how to install it on MATLAB. How can we install that library ? And how can we add it to HDF5_PLUGIN_PATH environment variable ?
Thank you
  2 comentarios
Torbjörn Pettersson
Torbjörn Pettersson el 11 de Oct. de 2020
Did you solve the above issue?
I have encountered the same problem...
Cheers,
Torbjörn
saurabh pegwal
saurabh pegwal el 25 de Nov. de 2021
Editada: saurabh pegwal el 25 de Nov. de 2021
Torbjörn Pettersson the solution explained by Suzanne Onstwedder works.
1). you just need to install the third party LZF plugin as explained above.
2). Add the environment variable for the plugin as shown in the image attached above "Naamloos.png"
Reynaud Lucile download it from the link Suzanne Onstwedder provided above that works.

Iniciar sesión para comentar.


Lorenza Sala
Lorenza Sala el 27 de En. de 2022
Hello,
I have the same problem, but for a different filter (blosc filter). The filter is included in the dynamically loaded filter feature. But I am working on Mac OS and I don't know how to download and install the feature on my machine. Can anyone help me with this?
Thanks

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by