public class NonMaxLimiter
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
static class |
NonMaxLimiter.LocalExtreme
Data structure which provides information on a local extremum.
|
| Constructor and Description |
|---|
NonMaxLimiter(NonMaxSuppression nonmax,
int maxTotalFeatures)
Configures the limiter
|
| Modifier and Type | Method and Description |
|---|---|
org.ddogleg.struct.FastQueue<NonMaxLimiter.LocalExtreme> |
getLocalExtreme() |
int |
getMaxTotalFeatures() |
NonMaxSuppression |
getNonmax() |
void |
process(boofcv.struct.image.GrayF32 intensity)
Extracts local max and/or min from the intensity image.
|
void |
setMaxTotalFeatures(int maxTotalFeatures) |
public NonMaxLimiter(NonMaxSuppression nonmax, int maxTotalFeatures)
nonmax - Non-maximum suppression algorithmmaxTotalFeatures - The total number of allowed features it can return. Set to a value ≤ 0 to disable.public void process(boofcv.struct.image.GrayF32 intensity)
intensity - Feature image intensitypublic org.ddogleg.struct.FastQueue<NonMaxLimiter.LocalExtreme> getLocalExtreme()
public int getMaxTotalFeatures()
public void setMaxTotalFeatures(int maxTotalFeatures)
public NonMaxSuppression getNonmax()