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
Describe the bug
Run Ellipsoid Factor using an image with more than Integer.MAX_VALUE pixels and it blows up because (presumably) the underlying map of starting points is a) pixelwise and b) (backed by) a 1D array rather than a 2D array (which has int × int pixel space).
Caused by: java.lang.RuntimeException: Number of elements in ArrayImg too big, use for example CellImg instead: 3445814736 > 2147483647
The text was updated successfully, but these errors were encountered:
mdoube
changed the title
Ellipsoid factor blows up if input image is bigger than int.MAX_VALUE pixels
Ellipsoid factor blows up if input image is bigger than Integer.MAX_VALUE pixels
Jul 10, 2023
Describe the bug
Run Ellipsoid Factor using an image with more than
Integer.MAX_VALUE
pixels and it blows up because (presumably) the underlying map of starting points is a) pixelwise and b) (backed by) a 1D array rather than a 2D array (which hasint
×int
pixel space).Caused by: java.lang.RuntimeException: Number of elements in ArrayImg too big, use for example CellImg instead: 3445814736 > 2147483647
The text was updated successfully, but these errors were encountered: