source: prdatasets/imox.m @ 138

Last change on this file since 138 was 137, checked in by bduin, 5 years ago
File size: 979 bytes
RevLine 
[80]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
[137]12% Copyright: R.P.W. Duin, r.p.w.duin@37steps.com
[80]13% Faculty EWI, Delft University of Technology
14% P.O. Box 5031, 2600 GA Delft, The Netherlands
15
[137]16function a = imox
[80]17
[137]18a = pr_getdata;
[80]19a = setname(a,'IMOX Dataset');
[122]20a = setlablist(a,char('I','M','O','X'));
21a = setfeatlab(a,char(...
[80]22        'diagonal from top-left', ...
23        'vertical from top-center', ...
24        'diagonal from top-right', ...
25                'horizontal from right-center', ...
26                'diagonal from bottom-right', ...
27                'vertical from bottom-center', ...
28                'diagonal from bottom-left', ...
29                'horizontal from left-center'));
Note: See TracBrowser for help on using the repository browser.