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

AVS.DetectCorners_CornerResponse Method

Detects corners using corner response method.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

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

Parameters

Name Type Range Default Description
inMonoImageAvlNet.ImageInput image.
inRoiAvlNet.NullableRef<AvlNet.Region>Range of pixels to be processed. Default value: atl::NIL.
inCornerResponseMethodAvlNet.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.
outCornersAvlNet.NullableRef<System.Collections.Generic.List<AvlNet.Point2D>>Found corner points. Can be null to skip this parameter calculation.
outCornerResponseImageAvlNet.NullableRef<AvlNet.Image> Can be null to skip this parameter calculation.

Function Overrides

See also