2019-09-15 15:03:44 -04:00
|
|
|
package com.chameleonvision.vision;
|
2019-09-22 02:49:30 -04:00
|
|
|
|
2019-09-11 22:07:24 +03:00
|
|
|
import java.util.Arrays;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2019-09-14 13:27:16 +03:00
|
|
|
public class Pipeline {
|
2019-09-22 02:49:30 -04:00
|
|
|
public int exposure = 50;
|
|
|
|
|
public int brightness = 50;
|
|
|
|
|
public String orientation = "Normal";
|
|
|
|
|
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;
|
2019-09-24 02:44:02 +03:00
|
|
|
public List<Integer> area = Arrays.asList(0, 100);
|
|
|
|
|
public List<Double> ratio = Arrays.asList(0D, 20D);
|
|
|
|
|
public List<Integer> extent = Arrays.asList(0, 100);
|
2019-09-22 02:49:30 -04:00
|
|
|
public int is_binary = 0;
|
|
|
|
|
public String sort_mode = "Largest";
|
|
|
|
|
public String target_group = "Single";
|
|
|
|
|
public String target_intersection = "Up";
|
|
|
|
|
public double M = 1;
|
|
|
|
|
public double B = 0;
|
|
|
|
|
public boolean is_calibrated = false;
|
2019-09-11 22:07:24 +03:00
|
|
|
}
|