Vision work, move camera calcs to CameraValues class

This commit is contained in:
Banks Troutman
2019-09-16 04:08:23 -04:00
parent dc3936ad8f
commit 86b811a36d
5 changed files with 153 additions and 76 deletions

View File

@@ -6,15 +6,15 @@ public class Pipeline {
public int exposure = 50;
public int brightness = 50;
public String orientation = "Normal";
public List<Integer> hue = Arrays.asList(0,100);
public List<Integer> saturation = Arrays.asList(0,100);
public List<Integer> value = Arrays.asList(0,100);
public List<Integer> hue = Arrays.asList(50,180);
public List<Integer> saturation = Arrays.asList(50,255);
public List<Integer> value = Arrays.asList(50,255);
public boolean erode = false;
public boolean dilate = false;
public List<Integer> area = Arrays.asList(0,100);
public List<Integer> ratio = Arrays.asList(0,20);
public List<Integer> extent = Arrays.asList(0,100);
public boolean is_binary = false;
public int is_binary = 0;
public String sort_mode = "Largest";
public String target_group = "Single";
public String target_intersection = "Largest";