Click or drag to resize
XDL

XrsCalcNCC Method

Normalized Cross Correlation를 계산한다.

Namespace:  Pixoneer.NXDL.NRS
Assembly:  NXDLrs (in NXDLrs.dll) Version: 1.2.817.72
Syntax
C#
public static double CalcNCC(
	XGrid gridT,
	XGrid gridS,
	int xsizeT,
	int ysizeT,
	int xsizeS,
	int ysizeS,
	int masksizeX,
	int masksizeY,
	bool crossHairSearch
)

Parameters

gridT
Type: Pixoneer.NXDLXGrid
[In] Template data array.
gridS
Type: Pixoneer.NXDLXGrid
[In] Search data array.
xsizeT
Type: SystemInt32
[In] Template X size.
ysizeT
Type: SystemInt32
[In] Template Y size.
xsizeS
Type: SystemInt32
[In] Search X size.
ysizeS
Type: SystemInt32
[In] Search Y size.
masksizeX
Type: SystemInt32
[In] Masking X size.
masksizeY
Type: SystemInt32
[In] Masking Y size.
crossHairSearch
Type: SystemBoolean
[In] Cross Hair적용시 true(4-way), 아니고 8-way적용시 false.

Return Value

Type: Double
NCC값.
See Also