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.image.interpolation;
011
012/**
013 * <p>
014 * A {@link PixelInterpolator} implementing cubic B-spline interpolation in 2D See Sec.22.4.2 of [1] for additional
015 * details.
016 * </p>
017 * <p>
018 * [1] W. Burger, M.J. Burge, <em>Digital Image Processing &ndash; An Algorithmic Introduction</em>, 3rd ed, Springer
019 * (2022).
020 * </p>
021 *
022 * @author WB
023 * @see SplineInterpolator
024 */
025public class CubicBSplineInterpolator extends SplineInterpolator {
026
027        /**
028         * Constructor.
029         */
030        public CubicBSplineInterpolator() {
031                super(0.0, 1.0);
032        }       
033
034}