SaliencyInvokeCompute Method |
http://www.emgu.com
Compute the saliency.
Namespace:
Emgu.CV.Saliency
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static bool Compute(
this ISaliency saliency,
IInputArray image,
IOutputArray saliencyMap
)
<ExtensionAttribute>
Public Shared Function Compute (
saliency As ISaliency,
image As IInputArray,
saliencyMap As IOutputArray
) As Boolean
public:
[ExtensionAttribute]
static bool Compute(
ISaliency^ saliency,
IInputArray^ image,
IOutputArray^ saliencyMap
)
[<ExtensionAttribute>]
static member Compute :
saliency : ISaliency *
image : IInputArray *
saliencyMap : IOutputArray -> bool
Parameters
- saliency
- Type: Emgu.CV.SaliencyISaliency
The Saliency object - image
- Type: Emgu.CVIInputArray
The image. - saliencyMap
- Type: Emgu.CVIOutputArray
The computed saliency map.
Return Value
Type:
Booleantrue if the saliency map is computed, false otherwise
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
ISaliency. 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