Skip to content

Commit

Permalink
Update ObjectDetectionSubsystem.java
Browse files Browse the repository at this point in the history
  • Loading branch information
GearBoxFox committed Feb 9, 2024
1 parent 6e7b2eb commit 0325bd5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public void periodic() {

double[] obs = m_inputs.getObservations();

for (int i = 2; i < obs[0]; i += 4) {
for (int i = 1; i < obs[0]; i += 4) {
m_observations.add(new DetectionObservation(
obs[i],
obs[i + 1],
Expand Down

0 comments on commit 0325bd5

Please sign in to comment.