Click or drag to resize
XDL

XrsStretchLUT Method

영상 향상을 위한 LUT(Look Up Table)와 Stretched Histogram을 생성한다. Histogram Stretching에 대해서는 영상처리 전문서적을 참고한다.

Namespace: Pixoneer.NXDL.NRS
Assembly: NXDLrs (in NXDLrs.dll) Version: 2.0.3.38
Syntax
C#
public static void StretchLUT(
	eCompStretchType Method,
	byte its000,
	byte its255,
	byte[] HistPtPos,
	byte[] HistPtIntensity,
	ulong[] Hist,
	out byte[] LUT,
	out ulong[] HistOut
)

Parameters

Method  eCompStretchType
[In] Stretch type.
its000  Byte
[In] Minimum intensity.
its255  Byte
[In] Maximum intensity.
HistPtPos  Byte
[In] Piece-Wise Linear Stretching 적용시 중간 점들의 배역을 입력.
HistPtIntensity  Byte
[In] Piece-Wise Linear Stretching을 위한 Intensity 배역값을 입력.
Hist  UInt64
[In] Histogram 입력(256).
LUT  Byte
[Out] LUT(Look Up Table).
HistOut  UInt64
[Out] Stretched histogram.
See Also