source: prdatasets/imox.m @ 81

Last change on this file since 81 was 81, checked in by bduin, 11 years ago
File size: 1019 bytes
Line 
1%IMOX Handwritten character dataset, 192 objects, 8 features, 4 classes
2%
3%       A = IMOX
4%
5% Load the dataset in A. The features are the distances from a bounding box
6% to the pixels of a set of handwritten characters 'I', 'M', 'O', and 'X',
7% measured form the corners along the diagnoals and from the edge midpoints
8% along the horizontal and vertical central axes.
9%
10% See also DATASETS, PRDATASETS, X80
11
12% Copyright: R.P.W. Duin, r.p.w.duin@prtools.org
13% Faculty EWI, Delft University of Technology
14% P.O. Box 5031, 2600 GA Delft, The Netherlands
15
16function a = imox;
17
18prdatasets(mfilename,1);
19a = pr_dataset('imox');
20a = setname(a,'IMOX Dataset');
21a = setlablist(a,str2mat('I','M','O','X'));
22a = setfeatlab(a,str2mat(...
23        'diagonal from top-left', ...
24        'vertical from top-center', ...
25        'diagonal from top-right', ...
26                'horizontal from right-center', ...
27                'diagonal from bottom-right', ...
28                'vertical from bottom-center', ...
29                'diagonal from bottom-left', ...
30                'horizontal from left-center'));
Note: See TracBrowser for help on using the repository browser.