source: prdatasets/imsegment_sl.m @ 144

Last change on this file since 144 was 142, checked in by bduin, 5 years ago

Updated collection of datasets

File size: 948 bytes
Line 
1%IMSEGMENT_SL Statlog (Image Segmentation) Data Set 
2%PRTools dataset import from UCI, 2310 objects, 19 features, 7 classes
3%
4%  A = IMSEGMENT_SL
5%
6%DESCRIPTION
7%This command downloads one of the UCI data sets, converts it into PRTools
8%format and stores it locally for future use. Consult the <a href="http://archive.ics.uci.edu/ml/datasets/Statlog+(Image+Segmentation)">related website</a>
9%for further information. Please make the appropriate references in
10%publications that make use of this dataset.
11%
12%This dataset is very similar to the IMSEGMENT dataset.
13%
14%SEE ALSO <a href="http://37steps.com/prtools">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
15%PRTOOLS, DATASETS, IMSEGMENT
16
17% Copyright: R.P.W. Duin, r.p.w.duin@37steps.com
18
19function a = imsegment_sl
20
21a = pr_download_uci('Statlog+(Image+Segmentation)','segment.dat',[],[],[],[],[],' ');
22a = setname(a,'Statlog Image Segmentation');
Note: See TracBrowser for help on using the repository browser.