|
XrsStretchLUT Method
|
영상 향상을 위한 LUT(Look Up Table)와 신장된 히스토그램을 생성한다.
히스토그램 신장(Histogram Stretching)에 대해서는 영상처리 전문서적을 참고한다.
Namespace: Pixoneer.NXDL.NRSAssembly: NXDLrs (in NXDLrs.dll) Version: 3.0.0.0
Syntaxpublic 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] 신장(stretching) 방법.
- its000 Byte
- [In] 강도 최소값.
- its255 Byte
- [In] 강도 최대값.
- HistPtPos Byte
- [In] 구간 선형 신장(Piecewise Linear Stretching)을 위한 구간 위치점 배열.
- HistPtIntensity Byte
- [In] 구간 선형 신장(Piecewise Linear Stretching)을 위한 강도값 배열.
- Hist UInt64
- [In] 입력 히스토그램. ( 구간의 개수 : 256 )
- LUT Byte
- [Out] LUT(Look Up Table).
- HistOut UInt64
- [Out] 신장된 히스토그램.
See Also