Skip to content

Commit 29375c6

Browse files
committed
WIP: Elongation and Centroid work
1 parent 9764de4 commit 29375c6

File tree

2 files changed

+45
-1
lines changed

2 files changed

+45
-1
lines changed

src/main/java/net/imglib2/mesh/MeshStats.java

+44-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ public static double compactness( final Mesh mesh )
256256
* @param input
257257
* the input mesh.
258258
* @return the centroid of the mesh.
259-
* @implNote op names='geom.centroid', priority='10000.'
259+
* @implNote op names='geom.centerOfGravity', priority='10000.'
260260
*/
261261
public static RealPoint centroid( final Mesh input )
262262
{
@@ -314,6 +314,49 @@ public static RealPoint centroid( final Mesh input )
314314
return new RealPoint( m100 / v, m010 / v, m001 / v );
315315
}
316316

317+
/**
318+
* Describes the elongation of the two <b>larger</b> axes of the minimum box containing a {@link Mesh}. i.e. for a bounding box with side radii of {@code a}, {@code b}, and {@code c}, where {@code a}&ge;{@code b}&ge;{@code c}, this method returns
319+
* @param input a {@link Mesh}
320+
* @return the elongation of a cross-section of
321+
* @implNote op names='geom.mainElongation', label='Geometric (3D): Main
322+
* Elongation', priority='10000.'
323+
*/
324+
public static double mainElongation(final Mesh input) {
325+
final RealMatrix it = InertiaTensor.calculate(input);
326+
final EigenDecomposition ed = new EigenDecomposition(it);
327+
328+
final double l1 = ed.getRealEigenvalue(0) - ed.getRealEigenvalue(2) + ed
329+
.getRealEigenvalue(1);
330+
final double l2 = ed.getRealEigenvalue(0) - ed.getRealEigenvalue(1) + ed
331+
.getRealEigenvalue(2);
332+
final double l3 = ed.getRealEigenvalue(2) - ed.getRealEigenvalue(0) + ed
333+
.getRealEigenvalue(1);
334+
335+
final double g = 1 / (8 * Math.PI / 15);
336+
337+
final double a = Math.pow(g * l1 * l1 / Math.sqrt(l2 * l3), 1 / 5d);
338+
final double b = Math.pow(g * l2 * l2 / Math.sqrt(l1 * l3), 1 / 5d);
339+
return 1 - (b / a);
340+
}
341+
342+
public static double medianElongation(final Mesh input) {
343+
final RealMatrix it = InertiaTensor.calculate(input);
344+
final EigenDecomposition ed = new EigenDecomposition(it);
345+
346+
final double l1 = ed.getRealEigenvalue(0) - ed.getRealEigenvalue(2) + ed
347+
.getRealEigenvalue(1);
348+
final double l2 = ed.getRealEigenvalue(0) - ed.getRealEigenvalue(1) + ed
349+
.getRealEigenvalue(2);
350+
final double l3 = ed.getRealEigenvalue(2) - ed.getRealEigenvalue(0) + ed
351+
.getRealEigenvalue(1);
352+
353+
final double g = 1 / (8 * Math.PI / 15);
354+
355+
final double b = Math.pow(g * l2 * l2 / Math.sqrt(l1 * l3), 1 / 5d);
356+
final double c = Math.pow(g * l3 * l3 / Math.sqrt(l1 * l2), 1 / 5d);
357+
return 1 - (c / b);
358+
}
359+
317360
private MeshStats()
318361
{}
319362
}

src/main/java/net/imglib2/mesh/Meshes.java

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ public class Meshes
5959
* Finds the center of a mesh using vertices.
6060
*
6161
* @return a RealPoint representing the mesh's center
62+
* @implNote op names='geom.centroid', priority='10000.'
6263
*/
6364
public static RealPoint center( final Mesh m )
6465
{

0 commit comments

Comments
 (0)