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

Invoke.ImageAlongPath

Creates an image from pixels traversed along a path.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void ImageAlongPath
(
	Fil.Image inImage,
	Fil.Path inAxisPath,
	Optional<Fil.CoordinateSystem2D> inAxisPathAlignment,
	int inScanWidth,
	Fil.Axis inAxisType,
	Fil.InterpolationMethod inInterpolationMethod,
	Optional<Fil.Pixel> inBorderColor,
	Fil.Image outImage,
	Optional<Fil.Path> outAlignedAxisPath,
	Diagnostic<List<Fil.Path>> diagSamplingPoints
)

Parameters

Name Type Range Default Description
inImageFil.ImageInput image.
inAxisPathFil.PathInput path.
inAxisPathAlignmentFtl.Optional<Fil.CoordinateSystem2D>Adjusts the axis path to the position of the inspected object. Default value: ftl::NIL.
inScanWidthint<1, INF>5The width of the stripe of pixels along the given path. Default value: 5.
inAxisTypeFil.AxisYType of axis the transformed axis path 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>Pixel ( X: 0.0f Y: 0.0f Z: 0.0f W: 0.0f )Color of pixel outside image. If inBorderColor = NIL then algorithm repeats color of boarder. Default value: Pixel ( X: 0.0f Y: 0.0f Z: 0.0f W: 0.0f ).
outImageFil.ImageOutput image.
outAlignedAxisPathFtl.Optional<Fil.Path>Input path 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