default:
format = Imgproc.COLOR_YUV2BGR_UYVY;
}
- saturation = Double.parseDouble(get(prop, "video.saturation", "0.5"));
+ saturation = inRange(Double.parseDouble(get(prop, "video.saturation", "0.5")), 0, 1);
crop = new CropConfiguration(prop);
list = new ListConfiguration(prop);
}
private LedConfiguration(Properties prop) {
cols = Integer.parseInt(get(prop, "leds.cols"));
rows = Integer.parseInt(get(prop, "leds.rows"));
- brightness = Math.max(1, Math.min(31, Integer.parseInt(get(prop, "leds.brightness", "31"))));
+ brightness = (int) inRange(Integer.parseInt(get(prop, "leds.brightness", "31")), 1, 31);
switch (get(prop, "leds.type", "").toUpperCase()) {
case "WS2801":
type = LedType.WS2801;
public enum LedType {
WS2801, APA102
}
+
+ private double inRange(double value, double lower, double upper) {
+ return value < lower ? lower
+ : value > upper ? upper
+ : value;
+ }
}