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 * A set of 216 binary shape images downloaded from https://vision.lems.brown.edu/content/available-software-and-databases
015 * (http://vision.lems.brown.edu/sites/default/files/216db.tar.gz). These images were converted to PNG format, their
016 * contents inverted and also their LUT's inverted. That is, pixels inside the contained shape(s) have foreground values
017 * 255 (black) and the backgound value is 0 (white).
018 *
019 * @author WB
020 * @see Kimia99
021 * @see Kimia1070
022 */
023public enum Kimia216 implements ImageResource {
024    Bone01,
025    Bone02,
026    Bone03,
027    Bone04,
028    Bone05,
029    Bone06,
030    Bone07,
031    Bone08,
032    Bone09,
033    Bone10,
034    Bone11,
035    Bone12,
036    Glas01,
037    Glas02,
038    Glas03,
039    Glas04,
040    Glas06,
041    Glas07,
042    Glas08,
043    Glas13,
044    Glas14,
045    Glas18,
046    Glas19,
047    Glas20,
048    Heart01,
049    Heart02,
050    Heart03,
051    Heart04,
052    Heart08,
053    Heart09,
054    Heart12,
055    Heart14,
056    Heart15,
057    Heart17,
058    Heart19,
059    Heart20,
060    Misk01,
061    Misk02,
062    Misk03,
063    Misk04,
064    Misk05,
065    Misk07,
066    Misk09,
067    Misk10,
068    Misk11,
069    Misk13,
070    Misk16,
071    Misk20,
072    bird02,
073    bird04,
074    bird07,
075    bird09,
076    bird10,
077    bird13,
078    bird15,
079    bird16,
080    bird17,
081    bird18,
082    bird19,
083    bird20,
084    brick03,
085    brick04,
086    brick05,
087    brick08,
088    brick09,
089    brick10,
090    brick14,
091    brick15,
092    brick16,
093    brick17,
094    brick18,
095    brick20,
096    camel04,
097    camel06,
098    camel07,
099    camel08,
100    camel12,
101    camel13,
102    camel14,
103    camel15,
104    camel16,
105    camel17,
106    camel19,
107    camel20,
108    car04,
109    car05,
110    car06,
111    car08,
112    car09,
113    car10,
114    car11,
115    car12,
116    car15,
117    car18,
118    car19,
119    car20,
120    children01,
121    children02,
122    children06,
123    children07,
124    children09,
125    children10,
126    children11,
127    children12,
128    children13,
129    children14,
130    children19,
131    children20,
132    classic01,
133    classic02,
134    classic03,
135    classic04,
136    classic08,
137    classic10,
138    classic12,
139    classic13,
140    classic15,
141    classic16,
142    classic19,
143    classic20,
144    elephant01,
145    elephant02,
146    elephant05,
147    elephant06,
148    elephant09,
149    elephant10,
150    elephant12,
151    elephant13,
152    elephant14,
153    elephant15,
154    elephant16,
155    elephant20,
156    face01,
157    face02,
158    face03,
159    face04,
160    face05,
161    face06,
162    face07,
163    face08,
164    face09,
165    face10,
166    face11,
167    face12,
168    fork01,
169    fork02,
170    fork03,
171    fork04,
172    fork05,
173    fork07,
174    fork09,
175    fork10,
176    fork14,
177    fork15,
178    fork19,
179    fork20,
180    fountain01,
181    fountain03,
182    fountain04,
183    fountain05,
184    fountain06,
185    fountain09,
186    fountain10,
187    fountain13,
188    fountain15,
189    fountain16,
190    fountain19,
191    fountain20,
192    hammer01,
193    hammer02,
194    hammer03,
195    hammer04,
196    hammer05,
197    hammer08,
198    hammer10,
199    hammer12,
200    hammer13,
201    hammer16,
202    hammer19,
203    hammer20,
204    key01,
205    key03,
206    key05,
207    key06,
208    key07,
209    key08,
210    key10,
211    key13,
212    key14,
213    key17,
214    key18,
215    key19,
216    ray02,
217    ray03,
218    ray04,
219    ray05,
220    ray09,
221    ray13,
222    ray14,
223    ray15,
224    ray16,
225    ray17,
226    ray18,
227    ray20,
228    turtle01,
229    turtle02,
230    turtle04,
231    turtle05,
232    turtle07,
233    turtle09,
234    turtle10,
235    turtle13,
236    turtle16,
237    turtle17,
238    turtle18,
239    turtle20,
240    ;
241}