You are here: Start » FIL.NET » Invoke.ImageAlongArc

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
inImageFil.ImageInput image.
inAxisArcFil.Arc2DInput arc.
inAxisArcAlignmentFtl.Optional<Fil.CoordinateSystem2D>Adjusts the axis arc to the position of the inspected object. Default value: ftl::NIL.
inScanWidthint<1, INF>5The width of the stripe of pixels along the given arc. Default value: 5.
inAxisTypeFil.AxisYType of axis the transformed axis arc will be parallel to. Default value: Y.
inInterpolationMethodFil.InterpolationMethodBilinearThe interpolation method used to compute pixel brightness in locations of not-integer coordinates. Default value: Bilinear.
inBorderColorFtl.Optional<Fil.Pixel>Color of pixel outside image. If inBorderColor = NIL then algorithm repeats color of boarder. Default value: ftl::NIL.
outImageFil.ImageOutput image.
outAlignedAxisArcFtl.Optional<Fil.Arc2D>Input arc after transformation (in the image coordinates).
diagSamplingPointsFil.Diagnostic<System.Collections.Generic.List<Fil.Path>>Array of paths each one containing the sampling points corresponding to one row of the resulting image.

See also