This is the source code to SEEDS superpixelsThis is the source code to SEEDS superpixels, as described in M. Van den Bergh, X. Boix, G. Roig, B. de Capitani and L. Van Gool, "SEEDS: Superpixels Extracted via Energy-Driven Sampling", ECCV 2012.
The SEEDS class is defined in seeds.h and seeds2.cpp. The method can be run on an RGB image (stored in an UINT* array) by using the following constructor, initialization and iteration methods:
SEEDS(int width, int height, int nr_channels, int nr_bins, int min_size);
void initialize(UINT* image, int seeds_w, int seeds_h, int nr_levels);
void iterate();
The initial size of the superpixels is independent from the image size, and defined by the following 3 parameters: , and . The first two define the minimum block size in the SEEDS algorithm. The defines the number of times this block size is doubled to
这是一本有关MATLAB的参考书,适合于使用MATLAB或正在打算使用MATLAB的读者。(This is a MATLAB-related reference books, suitable for the use of MATLAB or is intended to use MATLAB readers.)
基于脉冲反射法定位电缆故障的M128代码,组合采样法对固定波形数据采样提高采样率。(Based on the pulse reflection method to locate cable faults M128 code, fixed combination waveform sampling data sampling to increase the sampling rate.)
中值滤波在图像处理中占据很重要的地位,本代码是加权中值滤波处理源码。希望对大家有用。(Median filter in image processing occupies a very important position, the code is weighted median filter processing source. Hope to be useful.)