Commit ad2f94bc authored by drallensmith's avatar drallensmith

Revert "Staging further changes vs invalid feature errors" - compatibility worries

Will experiment with low-level features while consulting re errors

This reverts commit 461ee7df.
	modified:   src/highlevel_feature_extractor.cpp
parent 461ee7df
...@@ -50,7 +50,7 @@ const std::vector<float>& HighLevelFeatureExtractor::ExtractFeatures( ...@@ -50,7 +50,7 @@ const std::vector<float>& HighLevelFeatureExtractor::ExtractFeatures(
float max_y = SP.pitchHalfWidth() + tolerance_y; float max_y = SP.pitchHalfWidth() + tolerance_y;
// Feature[0]: X-postion // Feature[0]: X-postion
// Feature[1]: Y-position // Feature[1]: Y-position
if (self.posValid()) { if (valid(self)) {
addNormFeature(self_pos.x, min_x, max_x); addNormFeature(self_pos.x, min_x, max_x);
addNormFeature(self_pos.y, min_y, max_y); addNormFeature(self_pos.y, min_y, max_y);
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment