You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to convert the metadata of a 2D ics image with one color channel into OMEXML. I am calling the metadata translator service: SCIFIO.translator().translate(meta, omexml, false);code
This will find the ICSOMETranslator.
In function translateFormatMetadata of this class, the populatePixels() method of the OMEMetadataService is called with the doPlane switch set to true, resulting in an ArrayIndexOutOfBoundsExceptionhere. Because the MetadataService expects 3 non-planar axes in the input metadata.
Is there a way to prevent this from happening on my side?
The text was updated successfully, but these errors were encountered:
I am trying to convert the metadata of a 2D ics image with one color channel into OMEXML. I am calling the metadata translator service:
SCIFIO.translator().translate(meta, omexml, false);
codeThis will find the ICSOMETranslator.
In function translateFormatMetadata of this class, the populatePixels() method of the
OMEMetadataService
is called with thedoPlane
switch set to true, resulting in anArrayIndexOutOfBoundsException
here. Because the MetadataService expects 3 non-planar axes in the input metadata.Is there a way to prevent this from happening on my side?
The text was updated successfully, but these errors were encountered: