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

Invoke.GetImageColumn

Extracts an array of pixel values from a single column of an image.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void GetImageColumn
(
	Fil.Image inImage,
	Optional<int> inChannelIndex,
	int inColumnIndex,
	List<float> outValues,
	List<Fil.Pixel> outPixels
)

Parameters

Name Type Range Default Description
inImageFil.ImageInput image.
inChannelIndexFtl.Optional<int><0, 3>Selects a channel of the input image. Default value: ftl::NIL.
inColumnIndexint<0, 65535>Selects a column of the input image.
outValuesSystem.Collections.Generic.List<float>Output pixel values of the column.
outPixelsSystem.Collections.Generic.List<Fil.Pixel>Output pixels of the column.

See also