2019-09-15 15:03:44 -04:00
|
|
|
package com.chameleonvision.vision;
|
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-11 22:07:24 +03:00
|
|
|
public int exposure = 50;
|
|
|
|
|
public int brightness = 50;
|
|
|
|
|
public String orientation = "Normal";
|
2019-09-16 04:08:23 -04:00
|
|
|
public List<Integer> hue = Arrays.asList(50,180);
|
|
|
|
|
public List<Integer> saturation = Arrays.asList(50,255);
|
|
|
|
|
public List<Integer> value = Arrays.asList(50,255);
|
2019-09-11 22:07:24 +03:00
|
|
|
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);
|
2019-09-16 04:08:23 -04:00
|
|
|
public int is_binary = 0;
|
2019-09-11 22:07:24 +03:00
|
|
|
public String sort_mode = "Largest";
|
2019-09-14 20:38:50 +03:00
|
|
|
public String target_group = "Single";
|
2019-09-16 21:45:04 +03:00
|
|
|
public String target_intersection = "Up";
|
2019-09-11 22:07:24 +03:00
|
|
|
public double M = 1;
|
|
|
|
|
public double B = 0;
|
2019-09-17 13:59:53 +03:00
|
|
|
public boolean is_calibrated = false;
|
2019-09-11 22:07:24 +03:00
|
|
|
}
|