Package boofcv.factory.flow
Class ConfigOpticalFlowBlockPyramid
java.lang.Object
boofcv.factory.flow.ConfigOpticalFlowBlockPyramid
- All Implemented Interfaces:
Configuration,Serializable
Configuration for
DenseOpticalFlowBlockPyramid- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionintMaximum error allowed per pixel.intThe maximum number of layers in the pyramiddoubleDifference in scale between layers in the pyramid.intRadius of the square regionintRadius of the search area -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidChecks to see if the configuration is valid.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface boofcv.struct.Configuration
serializeActiveFields, serializeInitialize
-
Field Details
-
searchRadius
public int searchRadiusRadius of the search area -
regionRadius
public int regionRadiusRadius of the square region -
maxPerPixelError
public int maxPerPixelErrorMaximum error allowed per pixel. Default is 30 -
pyramidScale
public double pyramidScaleDifference in scale between layers in the pyramid. A value of 1 means a single layer. -
maxPyramidLayers
public int maxPyramidLayersThe maximum number of layers in the pyramid
-
-
Constructor Details
-
ConfigOpticalFlowBlockPyramid
public ConfigOpticalFlowBlockPyramid()
-
-
Method Details
-
setTo
-
checkValidity
public void checkValidity()Description copied from interface:ConfigurationChecks to see if the configuration is valid. If it is invalid, throw an exception explaining what is incorrect.- Specified by:
checkValidityin interfaceConfiguration
-