You are here: Start » AVL.NET » AVS.ExtractBlobs_Color Method

AVS.ExtractBlobs_Color Method

Segments an image into blobs by color-based thresholding.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void ExtractBlobs_Color
(
	AvlNet.Image inImage,
	NullableRef<AvlNet.ShapeRegion> inRoi,
	AvlNet.CoordinateSystem2D? inRoiAlignment,
	AvlNet.ColorThresholdParams inThresholdParams,
	AvlNet.RegionProcessingParams inRegionProcessingParams,
	AvlNet.BlobSplittingParams inBlobSplittingParams,
	IList<AvlNet.Region> outBlobs,
	IList<int> diagBlobAreas,
	AvlNet.Region diagBaseRegion
)

Parameters

Name Type Range Default Description
inImageAvlNet.ImageImage from which blobs are extracted.
inRoiAvlNet.NullableRef<AvlNet.ShapeRegion>Range of pixels to be processed. Default value: atl::NIL.
inRoiAlignmentAvlNet.CoordinateSystem2D?Adjusts the region. Default value: atl::NIL.
inThresholdParamsAvlNet.ColorThresholdParamsParameters for color-based thresholding.
inRegionProcessingParamsAvlNet.RegionProcessingParamsParameters for opening and closing of a region.
inBlobSplittingParamsAvlNet.BlobSplittingParamsParameters for splitting region into blobs.
outBlobsSystem.Collections.Generic.IList<AvlNet.Region>Blobs extracted from the input image.
diagBlobAreasSystem.Collections.Generic.IList<int>Areas of extracted blobs.
diagBaseRegionAvlNet.RegionRegion of pixels right after thresholding.

Function Overrides

See also