source: prdatasets/lena.m

Last change on this file was 150, checked in by bduin, 5 years ago
File size: 485 bytes
Line 
1%LENA 256 x 256 objects (pixels) with 3 features (red, green, blue)
2%
3%       A = LENA
4%
5% Load the dataset in A. This is a reduced version of the original Lena
6% image in PRTools format. Pixels are objects and colors are features.
7%
8% See also DATASETS, PRDATASETS
9
10% Copyright: R.P.W. Duin
11% Faculty EWI, Delft University of Technology
12% P.O. Box 5031, 2600 GA Delft, The Netherlands
13
14function a = lena
15
16a = pr_getdata;
17a = setfeatlab(a,['red  ';'green';'blue ']);
18a = setname(a,'Lena');
Note: See TracBrowser for help on using the repository browser.