|
GroupMatchingTNear Method
|
When overridden in a child class, should compute
whether two given shapes are near. Definition of
near is up to the implementation.
Namespace:
Accord.Vision
Assembly:
Accord.Vision (in Accord.Vision.dll) Version: 3.8.0
Syntax protected abstract bool Near(
T shape1,
T shape2
)
Protected MustOverride Function Near (
shape1 As T,
shape2 As T
) As Boolean
Request Example
View SourceParameters
- shape1
- Type: T
- shape2
- Type: T
Return Value
Type:
BooleanTrue if the two shapes are near; false otherwise.
See Also