001/******************************************************************************* 002 * This software is provided as a supplement to the authors' textbooks on digital 003 * image processing published by Springer-Verlag in various languages and editions. 004 * Permission to use and distribute this software is granted under the BSD 2-Clause 005 * "Simplified" License (see http://opensource.org/licenses/BSD-2-Clause). 006 * Copyright (c) 2006-2023 Wilhelm Burger, Mark J. Burge. All rights reserved. 007 * Visit https://imagingbook.com for additional details. 008 ******************************************************************************/ 009package Ch12_Ransac_Hough.settings; 010 011import java.awt.Color; 012 013/** 014 * Various display settings used in plugins of this package (only). 015 * 016 * @author WB 017 * 018 */ 019public interface RansacDrawSettings { 020 static double LineStrokeWidth = 0.75; 021 static Color InitialFitColor = Color.red; 022 static Color FinalFitColor = Color.blue; 023 static Color InlierColor = Color.green.darker(); 024 static double InlierRadius = 1.5; 025 static Color RandomDrawDotColor = Color.red; 026 static double RandoDrawDotRadius = 4; 027}