Skip to content

Commit

Permalink
Release 0.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
tischi committed Dec 30, 2020
1 parent e7840d7 commit 5b9d0f2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</parent>
<groupId>de.embl.cba</groupId>
<artifactId>bigDataProcessor2</artifactId>
<version>0.5.6-SNAPSHOT</version>
<version>0.5.6</version>
<url>https://github.com/embl-cba/bigDataProcessor2</url>
<name>BigDataProcessor2</name>
<description>Fiji plugin for inspection and processing of big image data</description>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/de/embl/cba/bdp2/image/Image.java
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ public String getInfo()
}
info += "\nSize [GB]: " + getTotalSizeGB();
info += "\nData type: " + getTypeAsString();
info += "\nSize X,Y,Z,C,T [#]: " + Arrays.toString( getDimensionsXYZCT() );
info += "\nSize X,Y,Z,C,T [Voxels]: " + Arrays.toString( getDimensionsXYZCT() );
if ( getVoxelUnit() == null )
{
info += "\nVoxel size [???]: " + Arrays.toString( getVoxelDimensions() );
Expand All @@ -269,7 +269,7 @@ public String getInfo()
{
info += "\nVoxel size [" + getVoxelUnit().getSymbol() + "]: " + Arrays.toString( getVoxelDimensions() );
}
info += "\nCache size X,Y,Z,C,T [#]: " + Arrays.toString( getCachedCellDims() );
info += "\nCache size X,Y,Z,C,T [Voxels]: " + Arrays.toString( getCachedCellDims() );

return info;
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/de/embl/cba/bdp2/viewer/ImageViewer.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

public class ImageViewer< R extends RealType< R > & NativeType< R > >
{
public static final String VIEWER_TITLE_STUMP = "Image: ";
public static final String VIEWER_TITLE_STUMP = "";
public static boolean enableArbitraryPlaneSlicing = false;

private Image< R > image;
Expand Down

0 comments on commit 5b9d0f2

Please sign in to comment.