Click or drag to resize
XDL

XGridGetValue Method (Double, Double, eXGridResampleMethod, Double, Double, Double)

데이터 타입이 RGB 또는 BGR 일 경우, 특정 위치에 대한 r, g, b 값을 각 데이타 타입 순서대로 Real64데이터 형으로 반환한다.

Namespace:  Pixoneer.NXDL
Assembly:  NXDL (in NXDL.dll) Version: 2.0.3.31
Syntax
C#
public bool GetValue(
	double Row,
	double Col,
	eXGridResampleMethod Method,
	ref double a,
	ref double b,
	ref double c
)

Parameters

Row
Type: SystemDouble
[In] Row 좌표.
Col
Type: SystemDouble
[In] Column좌표.
Method
Type: Pixoneer.NXDLeXGridResampleMethod
[In] Resample 방법을 설정.
a
Type: SystemDouble
[Out] 해당 Row, Col 위치에서의 r (b) 값.
b
Type: SystemDouble
[Out] 해당 Row, Col 위치에서의 g (g) 값.
c
Type: SystemDouble
[Out] 해당 Row, Col 위치에서의 b (r) 값.

Return Value

Type: Boolean
특정 위치에 값이 있는 경우 true를, 아니면 false를 리턴
See Also