Click or drag to resize
XDL

XDMBandCalcSubsetStatistics Method

LOD 레벨값과 영역정보에 대한 영상 데이터 통계값을 산출한다.

Namespace:  Pixoneer.NXDL.NRS
Assembly:  NXDLrs (in NXDLrs.dll) Version: 1.2.817.72
Syntax
C#
public bool CalcSubsetStatistics(
	int LevelSub,
	int X1LZ,
	int X2LZ,
	int Y1LZ,
	int Y2LZ,
	ref double min,
	ref double max,
	ref double mean,
	ref double std,
	ref long[] Hist
)

Parameters

LevelSub
Type: SystemInt32
[In] 이미지 LOD레벨.
X1LZ
Type: SystemInt32
[In] 영역의 최소 Column 위치값.
X2LZ
Type: SystemInt32
[In] 영역의 최대 Column 위치값.
Y1LZ
Type: SystemInt32
[In] 영역의 최소 Row 위치값.
Y2LZ
Type: SystemInt32
[In] 영역의 최대 Row 위치값.
min
Type: SystemDouble
[Out] 통계 최소값을 반환.
max
Type: SystemDouble
[Out] 통계 최대값을 반환.
mean
Type: SystemDouble
[Out] 통계 평균값을 반환.
std
Type: SystemDouble
[Out] 통계 표준편차값을 반환.
Hist
Type: SystemInt64
[Out] 통계 히스토그램을 반환.

Return Value

Type: Boolean
성공이면 true, 실패이면 false
See Also