Skip to content
Snippets Groups Projects
Commit 0ace3d15 authored by Stéphane  DALLONGEVILLE's avatar Stéphane DALLONGEVILLE
Browse files

Added better error report on convexification error.

parent fdcc4fba
No related branches found
Tags v1.8.0
No related merge requests found
......@@ -11,7 +11,7 @@
</parent>
<artifactId>convexify</artifactId>
<version>2.0.5</version>
<version>2.0.6</version>
<packaging>jar</packaging>
......@@ -24,7 +24,6 @@
<dependency>
<groupId>org.bioimageanalysis.icy</groupId>
<artifactId>protocols</artifactId>
<version>${protocols.version}</version>
</dependency>
<dependency>
<groupId>org.bioimageanalysis.icy</groupId>
......
......@@ -149,6 +149,8 @@ public class Convexify extends EzPlug implements ROIBlock
catch (Throwable t)
{
// can happen with QuickHull3D / ROI3DPolygonalMesh...
throw new IllegalArgumentException(
"Cannot compute convex hull for ROI " + roi.getName() + " of type " + roi.getClassName() + ".", t);
}
if (output == null)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment