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

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

Syntax

C#
public static F_EDGE_CORR_PARAMS init(
	int width,
	int height,
	double var_threshold,
	double sigmoid_k,
	int mag_threshold,
	int nms_length
)
Visual Basic
Public Shared Function init ( 
	width As Integer,
	height As Integer,
	var_threshold As Double,
	sigmoid_k As Double,
	mag_threshold As Integer,
	nms_length As Integer
) As F_EDGE_CORR_PARAMS

Parameters

width
Type: System..::..Int32
フィルタの幅( 3以上の奇数, height ≦ width , width * height ≦ 255 )
height
Type: System..::..Int32
フィルタの高さ ( 1 ≦ height ≦ 15 を満たす奇数, height ≦ width , width * height ≦ 255 )
var_threshold
Type: System..::..Double
分散閾値( 0 < var_threshold ≦ 16384 )
sigmoid_k
Type: System..::..Double
シグモイド係数( 0 < sigmoid_k )
mag_threshold
Type: System..::..Int32
強度閾値( 0 ≦ mag_threshold ≦ 255 )
nms_length
Type: System..::..Int32
非極大抑制のフィルタ片幅( 1 ≦ nms_length )

Return Value

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

See Also