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 imagingbook.common.image.interpolation;
010
011/**
012 * <p>
013 * Enumeration type listing the most common interpolation methods. See Ch. 22 of [1] for additional details.
014 * </p>
015 * <p>
016 * [1] W. Burger, M.J. Burge, <em>Digital Image Processing &ndash; An Algorithmic Introduction</em>, 3rd ed, Springer
017 * (2022).
018 * </p>
019 */
020public enum InterpolationMethod {
021        NearestNeighbor,
022        Bilinear,
023        Bicubic,
024        BicubicSmooth,
025        BicubicSharp,
026        CatmullRom,
027        CubicBSpline,
028        MitchellNetravali,
029        Lanzcos2,
030        Lanzcos3,
031        Lanzcos4;
032}