source: prdatasets/kimia.m

Last change on this file was 150, checked in by bduin, 5 years ago
File size: 825 bytes
Line 
1%KIMIA 216 objects given by 32 x 32 pixels (features) in 18 classes
2%
3%       A = KIMIA
4%
5% There are 216 binary images, 18 classes with 12 objects each.
6% The original image sizes of 146 x 156 have been reduced to 32 x 32.
7% The full images are still available as KIMIA_IMAGES in PRDATAFILES
8% The images are taken from:
9% http://www.lems.brown.edu/vision/researchAreas/SIID/
10%
11% See also DATASETS, PRDATASETS, PRDATAFILES, PRDATAFILES/KIMIA_IMAGES
12
13% Copyright: R.P.W. Duin
14% Faculty EWI, Delft University of Technology
15% P.O. Box 5031, 2600 GA Delft, The Netherlands
16
17function a = kimia
18
19a = pr_getdata;
20labs = {'bone' 'glass' 'heart' 'misk' 'bird' 'brick' 'camel' ...
21         'car' 'children' 'van' 'elephant' 'head' 'fork' 'fountain' ...
22         'hammer' 'key' 'ray' 'turtle'};
23a = setlablist(a,labs);
24a = setname(a,'Kimia Dataset');
25
Note: See TracBrowser for help on using the repository browser.