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
Modifier and TypeFieldDescriptionint
Maximum error allowed per pixel.int
The maximum number of layers in the pyramiddouble
Difference in scale between layers in the pyramid.int
Radius of the square regionint
Radius of the search area -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Checks to see if the configuration is valid.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
-
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: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
-