You are here: Start » FIL.NET » FIS.ImageAlongPath Method

FIS.ImageAlongPath Method

Creates an image from pixels traversed along a path.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void ImageAlongPath
(
	FilNet.Image inImage,
	FilNet.Path inAxisPath,
	FilNet.CoordinateSystem2D? inAxisPathAlignment,
	int inScanWidth,
	FilNet.Axis inAxisType,
	FilNet.InterpolationMethod inInterpolationMethod,
	FilNet.Pixel? inBorderColor,
	FilNet.Image outImage,
	NullableRef<FilNet.Path> outAlignedAxisPath,
	IList<FilNet.Path> diagSamplingPoints
)

Parameters

Name Type Range Default Description
inImageFilNet.ImageInput image.
inAxisPathFilNet.PathInput path.
inAxisPathAlignmentFilNet.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.
inAxisTypeFilNet.AxisYType of axis the transformed axis path will be parallel to. Default value: Y.
inInterpolationMethodFilNet.InterpolationMethodBilinearThe interpolation method used to compute pixel brightness in locations of not-integer coordinates. Default value: Bilinear.
inBorderColorFilNet.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 ).
outImageFilNet.ImageOutput image.
outAlignedAxisPathFilNet.NullableRef<FilNet.Path>Input path after transformation (in the image coordinates). Can be null to skip this parameter calculation.
diagSamplingPointsSystem.Collections.Generic.IList<FilNet.Path>Array of paths each one containing the sampling points corresponding to one row of the resulting image.

Function Overrides

See also