本文整理汇总了Java中net.semanticmetadata.lire.imageanalysis.mser.fourier.utils.PolygonUtils.polygonCenterOfMass方法的典型用法代码示例。如果您正苦于以下问题:Java PolygonUtils.polygonCenterOfMass方法的具体用法?Java PolygonUtils.polygonCenterOfMass怎么用?Java PolygonUtils.polygonCenterOfMass使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.semanticmetadata.lire.imageanalysis.mser.fourier.utils.PolygonUtils
的用法示例。
在下文中一共展示了PolygonUtils.polygonCenterOfMass方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testFourier
import net.semanticmetadata.lire.imageanalysis.mser.fourier.utils.PolygonUtils; //导入方法依赖的package包/类
protected static void testFourier(Point2D.Double[] poly, int k) {
// System.out.println();
// System.out.println("NEW");
// System.out.println();
printPoints(poly);
Point2D.Double cog = PolygonUtils.polygonCenterOfMass(poly);
// System.out.println("COG before:" + cog.getX() + "/" + cog.getY());
PolygonUtils.applyCoG(poly, cog);
printPoints(poly);
cog = PolygonUtils.polygonCenterOfMass(poly);
// System.out.println("COG after:" + cog.getX() + "/" + cog.getY());
// calc T
double[] t = calcParameter(poly, 2);
printParametrisierung(t);
Fourier f = new Fourier(poly);
f.computeFourier(k);
f.printCoefficients();
f.createInvariants2(1);
f.printInvariants();
}