AlgorithmExtensionsIsEmpty Method |
http://www.emgu.com
Returns true if the Algorithm is empty. e.g. in the very beginning or after unsuccessful read.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static bool IsEmpty(
this IAlgorithm algorithm
)
<ExtensionAttribute>
Public Shared Function IsEmpty (
algorithm As IAlgorithm
) As Boolean
public:
[ExtensionAttribute]
static bool IsEmpty(
IAlgorithm^ algorithm
)
[<ExtensionAttribute>]
static member IsEmpty :
algorithm : IAlgorithm -> bool
Parameters
- algorithm
- Type: Emgu.CVIAlgorithm
The algorithm
Return Value
Type:
BooleanReturns true if the Algorithm is empty. e.g. in the very beginning or after unsuccessful read.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IAlgorithm. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also