//##########################################
//####### OUTPUT DATA STORAGE ########
//##########################################
////////Raw Data (1 to 1 correlation with input)////////
float *msRawData; // Raw data output of mean shift algorithm
// to the location of the data point on the lattice
////////Data Modes////////
int *labels; // assigns a label to each data point associating it to
// a mode in modes (e.g. a data point having label l has
// mode modes[l])
float *modes; // stores the mode data of the input data set, indexed by labels
// 存储模态点
int *modePointCounts; // stores for each mode the number of point mapped to that mode,
// indexed by labels
//##########################################
//####### IMAGE CLASSIFICATION ########
//##########################################
/////////Image Boundaries/////////
RegionList *regionList; // stores the boundary locations for each region
/////////Image Regions////////
int regionCount; // stores the number of connected regions contained by the
// image