source: prdatasets/kimia.m @ 133

Last change on this file since 133 was 132, checked in by bduin, 5 years ago
File size: 859 bytes
RevLine 
[80]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
[132]13% Copyright: R.P.W. Duin
[80]14% Faculty EWI, Delft University of Technology
15% P.O. Box 5031, 2600 GA Delft, The Netherlands
16
17function a = kimia;
18
19prdatasets(mfilename,1);
20labs = {'bone' 'glass' 'heart' 'misk' 'bird' 'brick' 'camel' ...
21         'car' 'children' 'van' 'elephant' 'head' 'fork' 'fountain' ...
22         'hammer' 'key' 'ray' 'turtle'};
[81]23a = pr_dataset('kimia');
[80]24a = setlablist(a,labs);
25a = setname(a,'Kimia Dataset');
26
Note: See TracBrowser for help on using the repository browser.