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

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

Syntax

C#
public static F_EDGE_CORR_MAX_PARAMS init(
	int width,
	int height,
	double var_threshold_min,
	double var_threshold_max,
	double sigmoid_k,
	int mag_threshold_min,
	int mag_threshold_max,
	int nms_length
)
Visual Basic
Public Shared Function init ( 
	width As Integer,
	height As Integer,
	var_threshold_min As Double,
	var_threshold_max As Double,
	sigmoid_k As Double,
	mag_threshold_min As Integer,
	mag_threshold_max As Integer,
	nms_length As Integer
) As F_EDGE_CORR_MAX_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_min
Type: System..::..Double
最小分散閾値 ( 0 < var_threshold_min ≦ 16384 )
var_threshold_max
Type: System..::..Double
最大分散閾値 ( 0 < var_threshold_max ≦ 16384 )
sigmoid_k
Type: System..::..Double
シグモイド係数 ( 0 < sigmoid_k )
mag_threshold_min
Type: System..::..Int32
最小強度閾値 ( 0 ≦ mag_threshold_min ≦ 255 )
mag_threshold_max
Type: System..::..Int32
最大強度閾値 ( 0 ≦ mag_threshold_max ≦ 255 )
nms_length
Type: System..::..Int32
非極大抑制のフィルタ片幅 ( 1 ≦ nms_length )

Return Value

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

See Also