i.fusion.brovey.html 3.0 KB

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