Package graphmatcher.matcher

Examples of graphmatcher.matcher.MatchingOptions


    return ShapeContextGraphMatcher.matcherID;
  }

  @Override
  public MatchingOptions getMatchingOptions() {
    MatchingOptions options = new MatchingOptions(ShapeContextGraphMatcher.matcherID);

    // options.numberOfNeighbours =
    // Integer.parseInt(numbersOfNeighboursField.getText());
    options.numberOfAngleBins = Integer.parseInt(numberOfAngleBinsField.getText());
    options.numberOfRadiusBins = Integer.parseInt(numberOfRadiusBinsField.getText());

    // options.gpWeight = Double.parseDouble(gpField.getText());
    // options.cpWeight = Double.parseDouble(cpField.getText());
    // options.npWeight = Double.parseDouble(npField.getText());
    // options.vpWeight = Double.parseDouble(vpField.getText());
    // options.epWeight = Double.parseDouble(epField.getText());

    options.setNoRotation(!rotationCheckBox.isSelected());

    return options;
  }
View Full Code Here


    return KOSystemGraphMatcher.matcherID;
  }

  @Override
  public MatchingOptions getMatchingOptions() {
    MatchingOptions options = new MatchingOptions(KOSystemGraphMatcher.matcherID);
    options.setCandidateLimit(Double.parseDouble(minimumCandidateFitnessField.getText()));
    options.setMinimimRatingForGoodPair(Double.parseDouble(minimumMergeFitnessField.getText()));
    // options.setAngle(Double.parseDouble(maxAngleDiffField.getText()));
    options.setNoRotation(!rotationCheckBox.isSelected());
    return options;
  }
View Full Code Here

    return SimpleMatcher.matcherID;
  }

  @Override
  public MatchingOptions getMatchingOptions() {
    MatchingOptions options = new MatchingOptions(SimpleMatcher.matcherID);
    return options;
  }
View Full Code Here

      Calendar calendar = GregorianCalendar.getInstance();
      String prefix = calendar.get(Calendar.MONTH) + "_" + calendar.get(Calendar.DAY_OF_MONTH) + "_";
      prefix += calendar.get(Calendar.HOUR_OF_DAY) + "_" + calendar.get(Calendar.MINUTE) + "_";

      MatchingOptions matcherOptions = matchingOptionPanel.getMatchingOptions();
      FileWriterContainer matcherContainer = FileWriterContainer.createContainer(directory, prefix
          + matchingOptionPanel.getDefaultFileName(), matcherOptions);

      long startTime = System.currentTimeMillis();
      _tp = 0;
View Full Code Here

TOP

Related Classes of graphmatcher.matcher.MatchingOptions

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.