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 ******************************************************************************/ 009 010package imagingbook.common.threshold.global; 011 012/** 013 * <p> 014 * This is a special case of a {@link QuantileThresholder} with quantile b = 0.5. See Sec. 9.1 (Alg. 9.1) of [1] for 015 * additional details. 016 * </p> 017 * <p> 018 * [1] W. Burger, M.J. Burge, <em>Digital Image Processing – An Algorithmic Introduction</em>, 3rd ed, Springer 019 * (2022). 020 * </p> 021 * 022 * @author WB 023 * @version 2022/08/01 024 */ 025public class MedianThresholder extends QuantileThresholder { 026 027 /** 028 * Constructor, effectively creates a {@link QuantileThresholder} with quantile b = 0.5. 029 */ 030 public MedianThresholder() { 031 super(0.5); 032 } 033 034}