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.sampleimages.kimia; 010 011import imagingbook.core.resource.ImageResource; 012 013/** 014 * Test images composed of shapes from the Kimia data sets (see https://vision.lems.brown.edu/content/available-software-and-databases) 015 * 016 * @author WB 017 * @see Kimia216 018 * @see Kimia1070 019 */ 020public enum KimiaCollage implements ImageResource { 021 ShapeCollage1 022 ; 023 024}