[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] | 24 | function a = x80 |
---|
[80] | 25 | |
---|
[140] | 26 | a = pr_getdata('http://prtools.tudelft.nl/prdatasets/80x.mat'); |
---|
[80] | 27 | a = setname(a,'80X Dataset'); |
---|
[122] | 28 | a = setlablist(a,char('8','0','X')); |
---|
| 29 | a = 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')); |
---|