blob: 2e172437c17a2b931b03b8bae5bb868351864ad6 [file] [log] [blame]
Brian Silverman26e4e522015-12-17 01:56:40 -05001/*----------------------------------------------------------------------------*/
2/* Copyright (c) FIRST 2014. All Rights Reserved. */
3/* Open Source Software - may be modified and shared by FRC teams. The code */
4/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
5/*----------------------------------------------------------------------------*/
6
7#include "Vision/Threshold.h"
8
9Threshold::Threshold(int new_plane1Low, int new_plane1High, int new_plane2Low,
10 int new_plane2High, int new_plane3Low,
11 int new_plane3High) {
12 plane1Low = new_plane1Low;
13 plane1High = new_plane1High;
14 plane2Low = new_plane2Low;
15 plane2High = new_plane2High;
16 plane3Low = new_plane3Low;
17 plane3High = new_plane3High;
18}