Adjusted folder structure to sit under com.chameleonvision package

This commit is contained in:
Banks Troutman
2019-09-15 15:03:44 -04:00
parent ec5a94d076
commit 25652ba32e
11 changed files with 29 additions and 32 deletions

View File

@@ -0,0 +1,23 @@
package com.chameleonvision.vision;
import java.util.Arrays;
import java.util.List;
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 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 String sort_mode = "Largest";
public String target_group = "Single";
public String target_intersection = "Largest";
public double M = 1;
public double B = 0;
}