diff --git a/components/bio-formats/src/loci/formats/in/FV1000Reader.java b/components/bio-formats/src/loci/formats/in/FV1000Reader.java index 3f3b811..ac61846 100644 --- a/components/bio-formats/src/loci/formats/in/FV1000Reader.java +++ b/components/bio-formats/src/loci/formats/in/FV1000Reader.java @@ -143,6 +143,7 @@ public class FV1000Reader extends FormatReader { new Hashtable(); private Hashtable roiFilenames = new Hashtable(); + private Vector planes; private POIService poi; @@ -342,6 +343,7 @@ public class FV1000Reader extends FormatReader { creationDate = null; lut = null; channels = null; + planes = null; if (lutNames != null) { lutNames.clear(); } @@ -381,6 +383,7 @@ public class FV1000Reader extends FormatReader { wavelengths = new Vector(); illuminations = new Vector(); channels = new Vector(); + planes = new Vector(); String oifName = null; @@ -665,6 +668,7 @@ public class FV1000Reader extends FormatReader { tiffs.add(ii, file); } + PlaneData plane = new PlaneData(); for (int dim=0; dim width || (y + h) > height) { - throw new FormatException("Invalid tile size: x=" + x + ", y=" + y + - ", w=" + w + ", h=" + h); + throw new FormatException("Invalid tile size: x=" + x + ", y=" + y + + ", w=" + w + ", h=" + h + ", width=" + width + ", height=" + height); } }