You are here: Start » FIL.NET » Invoke.ImageAlongArc
Creates an image from pixels traversed along an arc.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void ImageAlongArc ( Fil.Image inImage, Fil.Arc2D inAxisArc, Optional<Fil.CoordinateSystem2D> inAxisArcAlignment, int inScanWidth, Fil.Axis inAxisType, Fil.InterpolationMethod inInterpolationMethod, Optional<Fil.Pixel> inBorderColor, Fil.Image outImage, Optional<Fil.Arc2D> outAlignedAxisArc, Diagnostic<List<Fil.Path>> diagSamplingPoints )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | Fil.Image | Input image. | ||
![]() | inAxisArc | Fil.Arc2D | Input arc. | ||
![]() | inAxisArcAlignment | Ftl.Optional<Fil.CoordinateSystem2D> | Adjusts the axis arc to the position of the inspected object. Default value: ftl::NIL. | ||
![]() | inScanWidth | int | <1, INF> | 5 | The width of the stripe of pixels along the given arc. Default value: 5. |
![]() | inAxisType | Fil.Axis | Y | Type of axis the transformed axis arc will be parallel to. Default value: Y. | |
![]() | inInterpolationMethod | Fil.InterpolationMethod | Bilinear | The interpolation method used to compute pixel brightness in locations of not-integer coordinates. Default value: Bilinear. | |
![]() | inBorderColor | Ftl.Optional<Fil.Pixel> | Color of pixel outside image. If inBorderColor = NIL then algorithm repeats color of boarder. Default value: ftl::NIL. | ||
![]() | outImage | Fil.Image | Output image. | ||
![]() | outAlignedAxisArc | Ftl.Optional<Fil.Arc2D> | Input arc after transformation (in the image coordinates). | ||
![]() | diagSamplingPoints | Fil.Diagnostic<System.Collections.Generic.List<Fil.Path>> | Array of paths each one containing the sampling points corresponding to one row of the resulting image. |