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

« back to all changes in this revision

Viewing changes to scripts/i.fusion.brovey/description.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.fusion.brovey</em> performs a Brovey transformation using
4
 
three multispectral and the panchromatic satellite image scene 
5
 
channels. Three new channels are calculated according to the
6
 
formula:
7
 
 
8
 
<pre>
9
 
                            DN_b1 
10
 
    DN_fused = ------------------------------- * DN_pan
11
 
                    DN_b1 + DN_b2 + DN_b3
12
 
</pre>
13
 
 
14
 
The assignment of the channels depends on the satellite.
15
 
The module's help text (above) suggests for LANDSAT-7, QuickBird and SPOT.
16
 
 
17
 
 
18
 
<h2>NOTES</h2>
19
 
The command changes temporarily to the high resolution of the
20
 
panchromatic channels for creating the three output channels,
21
 
then restores the previous region settings. The current
22
 
region coordinates are respected. The three pan-sharpened output
23
 
channels may be combined with <em>d.rgb</em> or <em>r.composite</em>.
24
 
 
25
 
 
26
 
<h2>EXAMPLE</h2>
27
 
 
28
 
Calculation of Brovey fusion map from North Carolina Landsat scene:
29
 
 
30
 
<div class="code"><pre>
31
 
g.region rast=lsat7_2002_20 -p
32
 
 
33
 
# R, G, B composite at 28.5m 
34
 
d.rgb b=lsat7_2002_10 g=lsat7_2002_20 r=lsat7_2002_30
35
 
 
36
 
# Brovey fusion
37
 
i.fusion.brovey -l ms1=lsat7_2002_20 ms2=lsat7_2002_40 \
38
 
                   ms3=lsat7_2002_50 pan=lsat7_2002_80 \
39
 
                   outputprefix=brovey
40
 
 
41
 
# display at 14.25m
42
 
g.region rast=brovey.blue -p
43
 
d.rgb b=brovey.blue g=brovey.green r=brovey.red
44
 
</pre></div>
45
 
 
46
 
 
47
 
Results:
48
 
 
49
 
<p>
50
 
<center>
51
 
  <table border=1>
52
 
  <tr>
53
 
    <td align=center>
54
 
      &nbsp;<img src="rgb_originals.jpg" alt="R, G, B composite of Landsat at 28.5m">
55
 
      <br>
56
 
      <font size="-1">
57
 
      <i>R, G, B composite of Landsat at 28.5m</i>
58
 
      </font>
59
 
    </td>
60
 
    <td align=center>
61
 
      &nbsp;<img src="rgb_brovey.jpg" alt="R, G, B composite of Landsat Brovey fusion at 14.25m">
62
 
      <br>
63
 
      <font size="-1">
64
 
      <i>R, G, B composite of Landsat Brovey fusion at 14.25m</i>
65
 
      </font>
66
 
    </td>
67
 
  </tr>
68
 
  </table>
69
 
</center>
70
 
<br>
71
 
 
72
 
 
73
 
Colors may be optionally optimized.
74
 
 
75
 
 
76
 
<h2>SEE ALSO</h2>
77
 
 
78
 
<em>
79
 
<a href="i.his.rgb.html">i.his.rgb</a>,
80
 
<a href="i.rgb.his.html">i.rgb.his</a>,
81
 
<a href="d.rgb.html">d.rgb</a>,
82
 
<a href="r.composite.html">r.composite</a>
83
 
</em>
84
 
 
85
 
 
86
 
<h2>REFERENCES</h2>
87
 
 
88
 
<ul>
89
 
<li>Original Brovey formula reference unknown, probably <br>
90
 
   Roller, N.E.G. and Cox, S., 1980. Comparison of Landsat MSS
91
 
   and merged MSS/RBV data for analysis of natural vegetation.
92
 
   Proc. of the 14th International Symposium on Remote Sensing
93
 
   of Environment, San Jose, Costa Rica, 23-30 April, pp. 1001-1007
94
 
 
95
 
<li>Pohl, C., and J.L. van Genderen, 1998. 
96
 
    Multisensor image fusion in remote sensing: concepts, methods and
97
 
    application. Int. J. of Rem. Sens., 19, 823-854.
98
 
 
99
 
<li>M. Neteler, D. Grasso, I. Michelazzi, L. Miori, S. Merler, and C.
100
 
   Furlanello, 2005.
101
 
   An integrated toolbox for image registration, fusion and classification.
102
 
   International Journal of Geoinformatics, 1(1):51-61
103
 
   (<a href="http://www.grassbook.org/neteler/papers/neteler2005_IJG_051-061_draft.pdf">PDF</a>)
104
 
</ul>
105
 
 
106
 
 
107
 
<h2>AUTHOR</h2>
108
 
 
109
 
Markus Neteler, ITC-irst, Italy
110
 
<p>
111
 
<i>Last changed: $Date: 2011-11-08 10:42:51 +0100 (Tue, 08 Nov 2011) $</i>