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

FIS.DetectCorners_CornerResponse Method

Detects corners using corner response method.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void DetectCorners_CornerResponse
(
	FilNet.Image inMonoImage,
	NullableRef<FilNet.Region> inRoi,
	FilNet.CornerResponseMethod inCornerResponseMethod,
	int inKernelSize,
	float? inThreshold,
	NullableRef<List<FilNet.Point2D>> outCorners,
	NullableRef<FilNet.Image> outCornerResponseImage
)

Parameters

Name Type Range Default Description
inMonoImageFilNet.ImageInput image.
inRoiFilNet.NullableRef<FilNet.Region>Range of pixels to be processed. Default value: ftl::NIL.
inCornerResponseMethodFilNet.CornerResponseMethodMethod for computing corner response.
inKernelSizeint<1, 10>3Method kernel size. Default value: 3.
inThresholdfloat?<0.0f, 255.0f>50.0fThreshold for corner response value, between 0 and 255, default value is taken from SelectThresholdValue on outCornerResponseImage and entropy method. Default value: 50.0f.
outCornersFilNet.NullableRef<System.Collections.Generic.List<FilNet.Point2D>>Found corner points. Can be null to skip this parameter calculation.
outCornerResponseImageFilNet.NullableRef<FilNet.Image> Can be null to skip this parameter calculation.

Function Overrides

See also