public class FactorySearchLocalPeak
extends java.lang.Object
SearchLocalPeak| Constructor and Description |
|---|
FactorySearchLocalPeak() |
| Modifier and Type | Method and Description |
|---|---|
static <T extends boofcv.struct.image.ImageGray> |
meanShiftGaussian(int maxIterations,
float convergenceTol,
java.lang.Class<T> imageType)
Mean-shift based search with a Gaussian kernel
|
static <T extends boofcv.struct.image.ImageGray> |
meanShiftUniform(int maxIterations,
float convergenceTol,
java.lang.Class<T> imageType)
Mean-shift based search with a uniform kernel
|
public static <T extends boofcv.struct.image.ImageGray> SearchLocalPeak<T> meanShiftUniform(int maxIterations, float convergenceTol, java.lang.Class<T> imageType)
maxIterations - Maximum number of iterations. Try 15convergenceTol - Convergence tolerance. try 1e-3imageType - Type of input imagepublic static <T extends boofcv.struct.image.ImageGray> SearchLocalPeak<T> meanShiftGaussian(int maxIterations, float convergenceTol, java.lang.Class<T> imageType)
maxIterations - Maximum number of iterations. Try 15convergenceTol - Convergence tolerance. try 1e-3imageType - Type of input image