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

Invoke.ExtractBlobs_Color

Segments an image into blobs by color-based thresholding.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void ExtractBlobs_Color
(
	Fil.Image inImage,
	Optional<Fil.ShapeRegion> inRoi,
	Optional<Fil.CoordinateSystem2D> inRoiAlignment,
	Fil.ColorThresholdParams inThresholdParams,
	Fil.PreSplitProcessingParams inProcessingParams,
	Fil.SplittingParams inSplittingParams,
	List<Fil.Region> outBlobs,
	Fil.Region outBaseRegion
)

Parameters

Name Type Range Default Description
inImageFil.ImageImage from which blobs are extracted.
inRoiFtl.Optional<Fil.ShapeRegion>Range of pixels to be processed. Default value: ftl::NIL.
inRoiAlignmentFtl.Optional<Fil.CoordinateSystem2D>Adjusts the region. Default value: ftl::NIL.
inThresholdParamsFil.ColorThresholdParamsParameters for color-based thresholding.
inProcessingParamsFil.PreSplitProcessingParamsParameters for postprocessing of the extracted region.
inSplittingParamsFil.SplittingParamsParameters for splitting region into blobs.
outBlobsSystem.Collections.Generic.List<Fil.Region>Blobs extracted from the input image.
outBaseRegionFil.RegionRegion of pixels right after thresholding.

See also