Click or drag to resize
Accord.NET (logo)

MeanShift Constructor (Int32, IRadiallySymmetricKernel, Double)

Note: This API is now obsolete.

Creates a new MeanShift algorithm.

Namespace:  Accord.MachineLearning
Assembly:  Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax
[ObsoleteAttribute("It is not necessary to specify a value for the dimension parameter anymore.")]
public MeanShift(
	int dimension,
	IRadiallySymmetricKernel kernel,
	double bandwidth
)
Request Example View Source

Parameters

dimension
Type: SystemInt32
The dimension of the samples to be clustered.
kernel
Type: Accord.Statistics.Distributions.DensityKernelsIRadiallySymmetricKernel
The density kernel function to use.
bandwidth
Type: SystemDouble
The bandwidth (also known as radius) to consider around samples.
See Also