source: prdatasets/x80.m @ 122

Last change on this file since 122 was 122, checked in by bduin, 7 years ago
File size: 1.3 KB
Line 
1%X80 Handwritten character dataset, 45 objects with 8 features in 3 classes
2%
3%       A = X80
4%
5% DESCRIPTION
6% Load the dataset in A. This is the 80X dataset, having 3 classes.
7% The 8 features are the distances from a bounding box to the
8% pixels of a set of handwritten characters 'X', '8' and '0', measured from
9% the corners along the diagonals and from the edge midpoints along the
10% horizontal and vertical central axes.
11%
12% REFERENCES
13% 1. R. Dubes and A.K. Jain, Clustering techniques: The user's dilemma,
14% Pattern Recognition, Volume 8, Issue 4, October 1976, Pages 247-260.
15% 2. A.K. Jain, R.C. Dubes, C.C. Chen, Bootstrap Techniques for Error Estimation
16% IEEE Trans. Pattern Anal. and Mach. Intel., 9(5), pp. 628-633, 1987.
17%
18% See also DATASETS, PRDATASETS, IMOX
19
20% Copyright: R.P.W. Duin, r.p.w.duin@prtools.org
21% Faculty EWI, Delft University of Technology
22% P.O. Box 5031, 2600 GA Delft, The Netherlands
23
24function a = x80;
25
26prdatasets('80x',1);
27a = pr_dataset('80x');
28a = setname(a,'80X Dataset');
29a = setlablist(a,char('8','0','X'));
30a = setfeatlab(a,char(...
31        'diagonal from top-left', ...
32        'vertical from top-center', ...
33        'diagonal from top-right', ...
34                'horizontal from right-center', ...
35                'diagonal from bottom-right', ...
36                'vertical from bottom-center', ...
37                'diagonal from bottom-left', ...
38                'horizontal from left-center'));
Note: See TracBrowser for help on using the repository browser.