Commit 461ee7df authored by drallensmith's avatar drallensmith

Staging further changes vs invalid feature errors

parent 9891216a
...@@ -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 (valid(self)) { if (self.posValid()) {
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