m.transform.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <h2>DESCRIPTION</h2>
  2. <em>m.transform</em> is an utility to compute transformation
  3. based upon GCPs and output error measurements.
  4. <h2>NOTES</h2>
  5. For coordinates given with the <b>coords</b> file option or fed from
  6. <tt>stdin</tt>, the input format is "x y" with one coordinate pair per
  7. line.
  8. <p>The transformations are:
  9. <p>order=1:
  10. <div class="code"><pre>
  11. e = [E0 E1][1].[1]
  12. [E2 0][e] [n]
  13. n = [N0 N1][1].[1]
  14. [N2 0][e] [n]
  15. </pre></div>
  16. order=2:
  17. <div class="code"><pre>
  18. e = [E0 E1 E3][1 ] [1 ]
  19. [E2 E4 0][e ].[n ]
  20. [E5 0 0][e&sup2;] [n&sup2;]
  21. n = [N0 N1 N3][1 ] [1 ]
  22. [N2 N4 0][e ].[n ]
  23. [N5 0 0][e&sup2;] [n&sup2;]
  24. </pre></div>
  25. order=3:
  26. <div class="code"><pre>
  27. e = [E0 E1 E3 E6][1 ] [1 ]
  28. [E2 E4 E7 0][e ].[n ]
  29. [E5 E8 0 0][e&sup2;] [n&sup2;]
  30. [E9 0 0 0][e&sup3;] [n&sup3;]
  31. n = [N0 N1 N3 N6][1 ] [1 ]
  32. [N2 N4 N7 0][e ].[n ]
  33. [N5 N8 0 0][e&sup2;] [n&sup2;]
  34. [N9 0 0 0][e&sup3;] [n&sup3;]
  35. </pre></div>
  36. ["." = dot-product, (AE).N = N'EA.]
  37. <p>In other words, order=1 and order=2 are equivalent to order=3 with
  38. the higher coefficients equal to zero.
  39. <h2>SEE ALSO</h2>
  40. <em><a href="i.rectify.html">i.rectify</a></em>
  41. <h2>AUTHORS</h2>
  42. Brian J. Buckley<br>
  43. Glynn Clements<br>
  44. Hamish Bowman
  45. <p><i>Last changed: $Date$</i>