%LENA 256 x 256 objects (pixels) with 3 features (red, green, blue) % % A = LENA % % Load the dataset in A. This is a reduced version of the original Lena % image in PRTools format. Pixels are objects and colors are features. % % See also DATASETS, PRDATASETS % Copyright: R.P.W. Duin, r.p.w.duin@37steps.com % Faculty EWI, Delft University of Technology % P.O. Box 5031, 2600 GA Delft, The Netherlands function a = lena a = pr_getdata; a = setfeatlab(a,['red ';'green';'blue ']); a = setname(a,'Lena');