source: prdatasets/x80.m @ 139

Last change on this file since 139 was 137, checked in by bduin, 5 years ago
File size: 1.3 KB
RevLine 
[80]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
[132]20% Copyright: R.P.W. Duin
[80]21% Faculty EWI, Delft University of Technology
22% P.O. Box 5031, 2600 GA Delft, The Netherlands
23
[137]24function a = x80
[80]25
[137]26a = pr_getdata('http://prtools.tudelft.nl/prdatasets/80x.mat',1);
[80]27a = setname(a,'80X Dataset');
[122]28a = setlablist(a,char('8','0','X'));
29a = setfeatlab(a,char(...
[80]30        'diagonal from top-left', ...
31        'vertical from top-center', ...
32        'diagonal from top-right', ...
33                'horizontal from right-center', ...
34                'diagonal from bottom-right', ...
35                'vertical from bottom-center', ...
36                'diagonal from bottom-left', ...
37                'horizontal from left-center'));
Note: See TracBrowser for help on using the repository browser.