Class ConfigShiTomasi
java.lang.Object
boofcv.abst.feature.detect.interest.ConfigShiTomasi
- All Implemented Interfaces:
Configuration
,Serializable
Configuration for
Shi-Tomasi
corner.- See Also:
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Checks to see if the configuration is valid.copy()
setTo
(ConfigShiTomasi src) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface boofcv.struct.Configuration
serializeActiveFields, serializeInitialize
-
Field Details
-
weighted
public boolean weightedIf true a Gaussian kernel will be used otherwise a table/block filter is used. False runs much faster but selects a different location. Application specific which one is preferred. False is more commonly used. -
radius
public int radiusRadius of the kernel convolved across the image. Larger values act as a low pass filter. 2 or more is recommended but 1 is default for backwards compatibility.
-
-
Constructor Details
-
ConfigShiTomasi
public ConfigShiTomasi(boolean weighted, int radius) -
ConfigShiTomasi
public ConfigShiTomasi()
-
-
Method Details
-
checkValidity
public void checkValidity()Description copied from interface:Configuration
Checks to see if the configuration is valid. If it is invalid, throw an exception explaining what is incorrect.- Specified by:
checkValidity
in interfaceConfiguration
-
setTo
-
copy
-