Click or drag to resize
XDL

XDMBandCalcSubsetStatistics Method

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

Namespace: Pixoneer.NXDL.NRS
Assembly: NXDLrs (in NXDLrs.dll) Version: 2.0.3.38
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 ulong[] Hist
)

Parameters

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

Return Value

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