初期値指定コンストラクタ

Namespace: fvalgcli
Assembly: fvalgcli (in fvalgcli.dll) Version: 3.1.0.0 (3.1.0.11)

Syntax

C#
public static F_EDGE_SOBEL_MAX_PARAMS init(
	int mag_threshold_min,
	int mag_threshold_max,
	int nms_length
)
Visual Basic
Public Shared Function init ( 
	mag_threshold_min As Integer,
	mag_threshold_max As Integer,
	nms_length As Integer
) As F_EDGE_SOBEL_MAX_PARAMS

Parameters

mag_threshold_min
Type: System..::..Int32
最小強度閾値 ( 0 ≦ mag_threshold_min ≦ 1023 )
mag_threshold_max
Type: System..::..Int32
最大強度閾値 ( 0 ≦ mag_threshold_max ≦ 1023 )
nms_length
Type: System..::..Int32
非極大抑制のフィルタ片幅 ( 1 ≦ nms_length )

Return Value

Type: F_EDGE_SOBEL_MAX_PARAMS
指定された値で構築されたインスタンスを返します。

See Also