Package com.vividsolutions.jcs.algorithm

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

Related Classes of com.vividsolutions.jcs.algorithm.VertexHausdorffDistance

Copyright © 2018 www.massapicom. 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.