mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-20 00:51:41 +00:00
Vision work, move camera calcs to CameraValues class
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user