~ubuntu-branches/ubuntu/vivid/grass/vivid-proposed

« back to all changes in this revision

Viewing changes to imagery/i.ortho.photo/i.ortho.transform/i.ortho.transform.html

  • Committer: Package Import Robot
  • Author(s): Bas Couwenberg
  • Date: 2015-02-20 23:12:08 UTC
  • mfrom: (8.2.6 experimental)
  • Revision ID: package-import@ubuntu.com-20150220231208-1u6qvqm84v430b10
Tags: 7.0.0-1~exp1
* New upstream release.
* Update python-ctypes-ternary.patch to use if/else instead of and/or.
* Drop check4dev patch, rely on upstream check.
* Add build dependency on libpq-dev to grass-dev for libpq-fe.h.
* Drop patches applied upstream, refresh remaining patches.
* Update symlinks for images switched from jpg to png.

Show diffs side-by-side

added added

removed removed

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