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;
|
2019-10-14 22:36:56 +03:00
|
|
|
import java.util.HashMap;
|
2019-09-11 22:07:24 +03:00
|
|
|
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;
|
2019-10-12 03:38:42 +03:00
|
|
|
public Orientation orientation = Orientation.Normal;
|
2019-09-22 02:49:30 -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);
|
|
|
|
|
public boolean erode = false;
|
|
|
|
|
public boolean dilate = false;
|
2019-10-12 03:38:42 +03:00
|
|
|
public List<Float> area = Arrays.asList(0f, 100f);
|
|
|
|
|
public List<Float> ratio = Arrays.asList(0f, 20f);
|
2019-09-24 02:44:02 +03:00
|
|
|
public List<Integer> extent = Arrays.asList(0, 100);
|
2019-10-12 03:38:42 +03:00
|
|
|
public boolean isBinary = false;
|
|
|
|
|
public SortMode sortMode = SortMode.Largest;
|
|
|
|
|
public TargetGroup targetGroup = TargetGroup.Single;
|
|
|
|
|
public TargetIntersection targetIntersection = TargetIntersection.Up;
|
2019-09-22 02:49:30 -04:00
|
|
|
public double M = 1;
|
|
|
|
|
public double B = 0;
|
2019-10-12 03:38:42 +03:00
|
|
|
public boolean isCalibrated = false;
|
2019-09-11 22:07:24 +03:00
|
|
|
}
|