MCPcopy Create free account
hub / github.com/LARG/HFO / addFeature

Method addFeature

src/feature_extractor.cpp:90–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88}
89
90void FeatureExtractor::addFeature(float val) {
91 assert(featIndx < numFeatures);
92 feature_vec[featIndx++] = val;
93}
94
95void FeatureExtractor::addNormFeature(float val, float min_val, float max_val) {
96 assert(featIndx < numFeatures);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected