xtensor-io icon indicating copy to clipboard operation
xtensor-io copied to clipboard

xtensor plugin to read and write images, audio files, numpy (compressed) npz and HDF5

Results 23 xtensor-io issues
Sort by recently updated
recently updated
newest added

Trying to dump a boolean array leads to the error below. The code compiles fine if I replace the `bool` with `int`. Is this a bug or am I doing...

Hi, I'm new to xtensor and xtensor-io, and felt into the following error while trying to load a geotiff image with load_gdal: `ERROR 4: No driver registered.` `terminate called after...

It seems that we are still impacted with https://github.com/BlueBrain/HighFive/issues/394

Hello all, I was trying to compile the [stored array example](https://xtensor-io.readthedocs.io/en/latest/stored_arrays.html) in the documentation. However, the compiler gave me the following error message. ``` In file included from /home/hankliu5/workspace/xtensor-example/xtensor-io-example/src/first_example.cpp:1:0: /usr/local/include/xtensor-io/xfile_array.hpp:...

Supporting [GDAL Virtual File Systems](https://gdal.org/user/virtual_file_systems.html) would allow xtensor to access files located in compressed archives (zip, tar), on the network (http, https, ftp), and in the cloud (AWS S3, Google...

The current implementation of the tests makes a binary comparison of a file generated with numpy and the file generated with xtensor-io. This comparison can fail wile the files are...

xtensor uses `allocator` to allocate xarray, but unlike `new T[N]` which does not return `nullptr` if `N == 0`, `std::allocator{}.allocate(m_n_bytes)` may return `nullptr`. When it happens in MSVC STL runtime,...