%IMSEGMENT Survival of patients after surgery for breast cancer
%PRTools dataset import from UCI, 210+2100 objects, 19 features, 7 classes
%
% [TRAIN,TEST] = IMSEGMENT
% TRAIN_TEST = IMSEGMENT
%
%DESCRIPTION
%This command downloads one of the UCI data sets, converts it into PRTools
%format and stores it locally for future use. Consult the related website
%for further information. Please make the appropriate references in
%publications that make use of this dataset.
%
%SEE ALSO PRTools Guide, UCI Website
%PRTOOLS, DATASETS
% Copyright: R.P.W. Duin
function [a,b] = imsegment
[a,b] = pr_download_uci('Image+Segmentation',{'segmentation.data','segmentation.test'},[],[],[],[5 5],[],[],1);
a = setname(a,'Image Segmentation');
b = setname(b,'Image Segmentation');
if nargout < 2, a = [a;b]; end