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

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

Syntax

C#
public static F_FILTER_KERNEL_T init(
	IntPtr p,
	double denom,
	int size_x,
	int size_y,
	int anchor_x,
	int anchor_y
)
Visual Basic
Public Shared Function init ( 
	p As IntPtr,
	denom As Double,
	size_x As Integer,
	size_y As Integer,
	anchor_x As Integer,
	anchor_y As Integer
) As F_FILTER_KERNEL_T

Parameters

p
Type: System..::..IntPtr
カーネルを表す1次元配列の先頭ポインタ (DOUBLE *)
denom
Type: System..::..Double
フィルタコンボリューション時の除算値( != 0.0 )
size_x
Type: System..::..Int32
カーネルのX方向サイズ( 1以上 )
size_y
Type: System..::..Int32
カーネルのY方向サイズ( 1以上 )
anchor_x
Type: System..::..Int32
カーネルのX方向アンカー位置( 0〜(size_x-1) )
anchor_y
Type: System..::..Int32
カーネルのY方向アンカー位置( 0〜(size_y-1) )

Return Value

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

See Also