You are here: Start » FIL.NET » Function Reference » Image » Image Local Transforms » FIL.GradientMagnitudeImage_Signed
Computes an image of gradient for only selected direction.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void GradientMagnitudeImage_Signed ( FilNet.Image inImage, FilNet.EdgeTransition inEdgeTransition, FilNet.DifferentiationMethod inDiffMethod, FilNet.GradientOrientation inGradientOrientation, bool inSigned, FilNet.Image outImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | FilNet.Image | Input image. | ||
![]() | inEdgeTransition | FilNet.EdgeTransition | Defines what is considered as an edge in the image. | ||
![]() | inDiffMethod | FilNet.DifferentiationMethod | Defines which finite difference approach to use. | ||
![]() | inGradientOrientation | FilNet.GradientOrientation | Defines which gradient orientation to compute. | ||
![]() | inSigned | bool | False | Defines whether or not to output a signed result (true) or just a positive result (false). Default value: False. | |
![]() | outImage | FilNet.Image | Output image. |
Hardware Acceleration
This operation is optimized for SSE41 technology for pixels of type: UINT8.
This operation is optimized for AVX2 technology for pixels of type: UINT8.
This operation is optimized for NEON technology for pixels of type: UINT8.
This operation supports automatic parallelization for multicore and multiprocessor systems.
Hardware acceleration settings may be manipulated with Settings class.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Not supported inImage pixel format in GradientMagnitudeImage_Signed. Supported formats: 1xUInt8, 1xInt8, 1xUInt16, 1xInt16, 1xInt32, 1xReal. |