| 
            
              XGCPSetsGetWarpCoeffMap2Img(eWarpMethod, Double, Double, Double, Double, Double) Method
             | 
          
        
        
GCP Set에 있는 GCP를 이용하여 지리 좌표에서 영상 좌표로 변환할 때 필요한 Warping 계수(XWarpCoeff객체에 정의)들을 얻을 수 있다. 
        
        Namespace: Pixoneer.NXDL.NRSAssembly: NXDLrs (in NXDLrs.dll) Version: 2.0.3.40
Syntaxpublic XWarpCoeff GetWarpCoeffMap2Img(
	eWarpMethod method,
	out double[] errX,
	out double[] errY,
	ref double rmsX,
	ref double rmsY,
	ref double rmsT
)
Parameters
- method  eWarpMethod
 -  [In] Warping 방법(eWarpMethod). 
 - errX  Double
 -  [Out] 각 XGCP점들에 대한 원래 x 위치와 계산된 x 위치 사이의 차에 대한 배열. 
 - errY  Double
 -  [Out] 각 XGCP점들에 대한 원래 y 위치와 계산된 y 위치 사이의 차에 대한 배열. 
 - rmsX  Double
 -  [Out] 전체 XGCP점들에 대하여 원래 x 위치와 계산된 x위치 사이의 RMS 오차. sqrt(errX1*errX1 + errX2*errX2 ..... errXn*errXn). 
 - rmsY  Double
 -  [Out] 전체 XGCP점들에 대하여 원래 y 위치와 계산된 y위치 사이의 RMS 오차. sqrt(errY1*errY1 + errY2*errY2 ..... errYn*errYn). 
 - rmsT  Double
 -  [Out] x 와 y의 RMS를 종합적으로 고려한 Total RMS 오차, sqrt(rmsX*rmsX + rmsY*rmsY). 
 
Return Value
XWarpCoeff XWarpCoeff 객체. 
Remarks eWarpMethod가 Homography인 경우 GCP 정규화를 적용한 DLT(Direct Linear Transform) 기반 Homography.
See Also