Skip to content

v0.2.54..v0.2.55 changeset FeatureExtractorBase.h

Garret Voltz edited this page Aug 14, 2020 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/algorithms/extractors/FeatureExtractorBase.h b/hoot-core/src/main/cpp/hoot/core/algorithms/extractors/FeatureExtractorBase.h
index 497fec6..4dd5cb1 100644
--- a/hoot-core/src/main/cpp/hoot/core/algorithms/extractors/FeatureExtractorBase.h
+++ b/hoot-core/src/main/cpp/hoot/core/algorithms/extractors/FeatureExtractorBase.h
@@ -22,7 +22,7 @@
  * This will properly maintain the copyright information. DigitalGlobe
  * copyrights will be updated automatically.
  *
- * @copyright Copyright (C) 2015, 2017, 2018, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2015, 2017, 2018, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
  */
 #ifndef FEATUREEXTRACTORBASE_H
 #define FEATUREEXTRACTORBASE_H
@@ -34,8 +34,7 @@ namespace hoot
 {
 
 /**
- * Similar to Shape Distance as described in [1].
- * 1. Savary & Zeitouni, 2005
+ * Base class for feature extractors, which compare two feature and provide a metric score
  */
 class FeatureExtractorBase : public FeatureExtractor, public ApiEntityInfo
 {
@@ -51,13 +50,13 @@ public:
   /**
    * Returns the factor type for this feature/factor (Nominal or Numeric).
    */
-  virtual Tgs::DataFrame::FactorType getFactorType() const override
+  Tgs::DataFrame::FactorType getFactorType() const override
   { return Tgs::DataFrame::Numerical; }
 
   /**
    * Returns the null treatment for this feature/factor (NullAsValue or NullAsMissingValue).
    */
-  virtual Tgs::DataFrame::NullTreatment getNullTreatment() const override
+  Tgs::DataFrame::NullTreatment getNullTreatment() const override
   {
     return Tgs::DataFrame::NullAsMissingValue;
   }
Clone this wiki locally