Class FactorySearchLocalPeak
java.lang.Object
boofcv.factory.feature.detect.peak.FactorySearchLocalPeak
Factory for implementations of
SearchLocalPeak
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T extends ImageGray<T>>
SearchLocalPeak<T>meanShiftGaussian
(ConfigMeanShiftSearch config, Class<T> imageType) Mean-shift based search with a Gaussian kernelstatic <T extends ImageGray<T>>
SearchLocalPeak<T>meanShiftUniform
(ConfigMeanShiftSearch config, Class<T> imageType) Mean-shift based search with a uniform kernel
-
Constructor Details
-
FactorySearchLocalPeak
public FactorySearchLocalPeak()
-
-
Method Details
-
meanShiftUniform
public static <T extends ImageGray<T>> SearchLocalPeak<T> meanShiftUniform(ConfigMeanShiftSearch config, Class<T> imageType) Mean-shift based search with a uniform kernel- Parameters:
config
- Configuration for the searchimageType
- Type of input image- Returns:
- mean-shift search
-
meanShiftGaussian
public static <T extends ImageGray<T>> SearchLocalPeak<T> meanShiftGaussian(ConfigMeanShiftSearch config, Class<T> imageType) Mean-shift based search with a Gaussian kernel- Parameters:
config
- Configuration for the searchimageType
- Type of input image- Returns:
- mean-shift search
-