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 | |
---|
30 | function a = mfeat |
---|
31 | |
---|
32 | a = mfeat_fac; |
---|
33 | a = [a mfeat_fou]; |
---|
34 | a = [a mfeat_kar]; |
---|
35 | a = [a mfeat_mor]; |
---|
36 | a = [a mfeat_pix]; |
---|
37 | a = [a mfeat_zer]; |
---|
38 | |
---|
39 | a = setname(a,'MFEAT Combined Features'); |
---|