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 99 binary shape images downloaded from https://vision.lems.brown.edu/content/available-software-and-databases 015 * (http://vision.lems.brown.edu/sites/default/files/99db.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 Kimia216 021 * @see Kimia1070 022 */ 023public enum Kimia99 implements ImageResource { 024 bonefishes, 025 bonefishesocc1, 026 bunny04, 027 calf1, 028 calf2, 029 cat1, 030 cat2, 031 cow1, 032 cow2, 033 desertcottontail, 034 dog1, 035 dog2, 036 dog3, 037 dogfishsharks, 038 donkey1, 039 dude0, 040 dude1, 041 dude10, 042 dude11, 043 dude12, 044 dude2, 045 dude4, 046 dude5, 047 dude6, 048 dude7, 049 dude8, 050 easterncottontail, 051 f15, 052 f16, 053 f16occ1, 054 fgen1ap, 055 fgen1bp, 056 fgen1ep, 057 fgen1fp, 058 fgen2dp, 059 fgen2fp, 060 fgen3bp, 061 fgen5cp, 062 fish14, 063 fish23, 064 fish28, 065 fish30, 066 fox1, 067 hand, 068 hand2, 069 hand2occ1, 070 hand2occ2, 071 hand2occ3, 072 hand3, 073 hand90, 074 handbent1, 075 handbent2, 076 handdeform, 077 handdeform2, 078 harrier, 079 harrierocc1, 080 harrierocc2, 081 harrierocc3, 082 herrings, 083 kk0728, 084 kk0729, 085 kk0731, 086 kk0732, 087 kk0735, 088 kk0736, 089 kk0737, 090 kk0738, 091 kk0739, 092 kk0740, 093 kk0741, 094 marshrabbit, 095 mgen1bp, 096 mgen2ap, 097 mgen2fp, 098 mountaincottontail, 099 mountaincottontailocc1, 100 mountaincottontailocc2, 101 mountaincottontailrot, 102 mullets, 103 phantom, 104 phantomocc1, 105 pygmyrabbit, 106 skyhawk, 107 skyhawkocc1, 108 swamprabbit, 109 swamprabbitocc2, 110 swordfishes, 111 tool04, 112 tool04bent1, 113 tool07, 114 tool08, 115 tool09, 116 tool12, 117 tool17, 118 tool22, 119 tool27, 120 tool38, 121 tool44, 122 whalesharks, 123 ; 124 125}