source: prdatasets/mfeat.m @ 82

Last change on this file since 82 was 80, checked in by dtax, 11 years ago

Creator files for prtools datasets.

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 DATASETS, PRDATASETS,
23
24% Copyright: R.P.W. Duin, r.p.w.duin@prtools.org
25% Faculty EWI, Delft University of Technology
26% P.O. Box 5031, 2600 GA Delft, The Netherlands
27
28function a = mfeat
29
30a = mfeat_fac;
31a = [a mfeat_fou];
32a = [a mfeat_kar];
33a = [a mfeat_mor];
34a = [a mfeat_pix];
35a = [a mfeat_zer];
36
37a = setname(a,'MFEAT Combined Features');
Note: See TracBrowser for help on using the repository browser.