Disable drawing during color picking (#96)

Replaces showThreshold with shouldDraw
This commit is contained in:
Banks T
2020-08-20 14:45:28 -04:00
committed by GitHub
parent 0f8507e6b3
commit 072075508c
15 changed files with 95 additions and 69 deletions

View File

@@ -49,7 +49,7 @@ public class BenchmarkTest {
pipeline.getSettings().hsvHue.set(60, 100);
pipeline.getSettings().hsvSaturation.set(100, 255);
pipeline.getSettings().hsvValue.set(190, 255);
pipeline.getSettings().outputShowThresholded = true;
pipeline.getSettings().outputShouldDraw = true;
pipeline.getSettings().outputShowMultipleTargets = true;
pipeline.getSettings().contourGroupingMode = ContourGroupingMode.Dual;
pipeline.getSettings().contourIntersection = ContourIntersectionDirection.Up;
@@ -69,7 +69,7 @@ public class BenchmarkTest {
pipeline.getSettings().hsvHue.set(60, 100);
pipeline.getSettings().hsvSaturation.set(200, 255);
pipeline.getSettings().hsvValue.set(200, 255);
pipeline.getSettings().outputShowThresholded = true;
pipeline.getSettings().outputShouldDraw = true;
var frameProvider =
new FileFrameProvider(
@@ -86,7 +86,7 @@ public class BenchmarkTest {
pipeline.getSettings().hsvHue.set(60, 100);
pipeline.getSettings().hsvSaturation.set(200, 255);
pipeline.getSettings().hsvValue.set(200, 255);
pipeline.getSettings().outputShowThresholded = true;
pipeline.getSettings().outputShouldDraw = true;
var frameProvider =
new FileFrameProvider(
@@ -103,7 +103,7 @@ public class BenchmarkTest {
pipeline.getSettings().hsvHue.set(60, 100);
pipeline.getSettings().hsvSaturation.set(100, 255);
pipeline.getSettings().hsvValue.set(190, 255);
pipeline.getSettings().outputShowThresholded = true;
pipeline.getSettings().outputShouldDraw = true;
pipeline.getSettings().outputShowMultipleTargets = true;
pipeline.getSettings().contourGroupingMode = ContourGroupingMode.Dual;
pipeline.getSettings().contourIntersection = ContourIntersectionDirection.Up;