Package org.jamesii.perfdb.recording.features

Examples of org.jamesii.perfdb.recording.features.FeatureExtraction


  protected void startExtraction() {
    SimSystem.report(Level.INFO, "Starting extraction...");
    try {
      IPerformanceDatabase perfDB = SimSpExPerspective.getPerformanceDataBase();
      perfDB.open();
      FeatureExtraction fExtraction = new FeatureExtraction(perfDB);
      FeatureExtraction.refreshFeatureExtractors(perfDB);
      fExtraction.extractFeatures();
    } catch (Exception ex) {
      SimSystem.report(Level.SEVERE, null, ex.getMessage(), null, ex);
    }
    SimSystem.report(Level.INFO, "Finished feature extraction.");
  }
View Full Code Here


   * @throws Exception
   *           the exception
   */
  public void extractFeatures(IPerformanceDatabase perfDB) throws Exception {
    FeatureExtraction.refreshFeatureExtractors(perfDB);
    FeatureExtraction featureExtraction = new FeatureExtraction(perfDB);
    featureExtraction.extractFeatures();
    featureTypes = perfDB.getAllFeatureTypes();
  }
View Full Code Here

TOP

Related Classes of org.jamesii.perfdb.recording.features.FeatureExtraction

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.