source: prdatasets/mfeat.m

Last change on this file was 150, checked in by bduin, 5 years ago
File size: 1.2 KB
Line 
1%MFEAT 2000 objects with 649 features in 10 classes
2%
3%       A = MFEAT
4%
5% Load all MFEAT datasets in A. This dataset consists of features of
6% handwritten numerals (`0'--`9') extracted from a collection of Dutch
7% utility maps. Six different feature sets are extracted and stored
8% separately. This command loads them all, in the following order:
9%
10% MFEAT_FAC, MFEAT_FOU, MFEAT_KAR, MFEAT_MOR, MFEAT_PIX, MFEAT_ZER
11%
12% The corresponding feature vectors are concatenated.
13%
14% REFERENCES
15% [1] A.K. Jain, R.P.W. Duin, and J. Mao, Statistical Pattern Recognition:
16% A Review, IEEE Transactions on Pattern Analysis and Machine Intelligence,
17% vol. 22, no. 1, 2000, 4-37.
18% [2] R.P.W. Duin and D.M.J. Tax, Experiments with Classifier Combining
19% Rules, in: J. Kittler, F. Roli (eds.), Multiple Classifier Systems ,
20% LNCS, vol. 1857, Springer, Berlin, 2000, 16-29.
21%
22% SEE ALSO
23% DATASETS, PRDATASETS, MFEAT_FAC, MFEAT_FOU, MFEAT_KAR, MFEAT_MOR,
24% MFEAT_PIX, MFEAT_ZER
25
26% Copyright: R.P.W. Duin
27% Faculty EWI, Delft University of Technology
28% P.O. Box 5031, 2600 GA Delft, The Netherlands
29
30function a = mfeat
31
32a = mfeat_fac;
33a = [a mfeat_fou];
34a = [a mfeat_kar];
35a = [a mfeat_mor];
36a = [a mfeat_pix];
37a = [a mfeat_zer];
38
39a = setname(a,'MFEAT Combined Features');
Note: See TracBrowser for help on using the repository browser.