mirror of
https://github.com/paulscherrerinstitute/ch.psi.imagej.hdf5.git
synced 2025-04-20 21:20:02 +02:00
Fixed problem with that not all entries were shown ...
This commit is contained in:
parent
c276603087
commit
e9d73ffde8
2
pom.xml
2
pom.xml
@ -3,7 +3,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>ch.psi</groupId>
|
<groupId>ch.psi</groupId>
|
||||||
<artifactId>imagej.hdf5</artifactId>
|
<artifactId>imagej.hdf5</artifactId>
|
||||||
<version>0.7.0</version>
|
<version>0.8.0</version>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -64,6 +64,7 @@ public class HDF5Reader implements PlugIn {
|
|||||||
H5File file = null;
|
H5File file = null;
|
||||||
try {
|
try {
|
||||||
file = new H5File(filename, H5File.READ);
|
file = new H5File(filename, H5File.READ);
|
||||||
|
file.setMaxMembers(Integer.MAX_VALUE);
|
||||||
file.open();
|
file.open();
|
||||||
|
|
||||||
List<Dataset> datasets = HDF5Utilities.getDatasets(file);
|
List<Dataset> datasets = HDF5Utilities.getDatasets(file);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user