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

Invoke.ExtractBlobs_Range

Segments an image into blobs by thresholding using a range of values.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void ExtractBlobs_Range
(
	Fil.Image inImage,
	Optional<Fil.ShapeRegion> inRoi,
	Optional<Fil.CoordinateSystem2D> inRoiAlignment,
	Fil.RangeThresholdParams 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.RangeThresholdParamsParameters for thresholding an image.
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