Examples of VertexHausdorffDistance


Examples of com.vividsolutions.jcs.algorithm.VertexHausdorffDistance

* @see VertexHausdorffDistance
*/
public class HausdorffDistanceMatcher extends AbstractDistanceMatcher {

    protected double distance(Geometry target, Geometry candidate) {
        return new VertexHausdorffDistance(target, candidate).distance();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.