public class ConfigExtract
extends java.lang.Object
implements boofcv.struct.Configuration
NonMaxSuppression.| Modifier and Type | Field and Description |
|---|---|
boolean |
detectMaximums
If true then local maximums will be found
|
boolean |
detectMinimums
If false then local maximums will be found
|
int |
ignoreBorder
Size of border around the image in which pixels are not considered.
|
int |
radius
Search radius of the non-maximum region.
|
float |
threshold
Minimum feature intensity it will consider when detecting a maximum.
|
boolean |
useStrictRule
Is a strict test used to test for local maximums.
|
| Constructor and Description |
|---|
ConfigExtract() |
ConfigExtract(int radius,
float threshold)
Constructor which defaults to an ignore border of 0 and to using a strict rule
|
ConfigExtract(int radius,
float threshold,
int ignoreBorder,
boolean useStrictRule) |
ConfigExtract(int radius,
float threshold,
int ignoreBorder,
boolean useStrictRule,
boolean detectMinimums,
boolean detectMaximums) |
| Modifier and Type | Method and Description |
|---|---|
void |
checkValidity() |
void |
setTo(ConfigExtract orig) |
public int radius
public float threshold
public int ignoreBorder
public boolean useStrictRule
public boolean detectMinimums
public boolean detectMaximums
public ConfigExtract(int radius,
float threshold,
int ignoreBorder,
boolean useStrictRule,
boolean detectMinimums,
boolean detectMaximums)
public ConfigExtract(int radius,
float threshold,
int ignoreBorder,
boolean useStrictRule)
public ConfigExtract(int radius,
float threshold)
public ConfigExtract()
public void setTo(ConfigExtract orig)
public void checkValidity()
checkValidity in interface boofcv.struct.Configuration