|
@@ -5,78 +5,86 @@ multispectral image to sharpen 3 lower resolution bands. The 3
|
|
lower resolution bands can then be combined into an RGB color image at a
|
|
lower resolution bands can then be combined into an RGB color image at a
|
|
higher (more detailed) resolution than is possible using the original 3
|
|
higher (more detailed) resolution than is possible using the original 3
|
|
bands. For example, Landsat ETM has low resolution spectral bands 1 (blue),
|
|
bands. For example, Landsat ETM has low resolution spectral bands 1 (blue),
|
|
-2 (green), 3 (red), 4 (near IR), 5 (mid-IR), and 7 (mid-IR) at 30m resolution,
|
|
|
|
|
|
+2 (green), 3 (red), 4 (near IR), 5 (mid-IR), and 7 (mid-IR) at 30m resolution,
|
|
and a high resolution panchromatic band 8 at 15m resolution. Pan sharpening
|
|
and a high resolution panchromatic band 8 at 15m resolution. Pan sharpening
|
|
-allows bands 3-2-1 (or other combinations of 30m resolution bands like 4-3-2
|
|
|
|
|
|
+allows bands 3-2-1 (or other combinations of 30m resolution bands like 4-3-2
|
|
or 5-4-2) to be combined into a 15m resolution color image.
|
|
or 5-4-2) to be combined into a 15m resolution color image.
|
|
<br><br>
|
|
<br><br>
|
|
-i.pansharpen offers a choice of three different 'pan sharpening'
|
|
|
|
|
|
+i.pansharpen offers a choice of three different 'pan sharpening'
|
|
algorithms: IHS, Brovey, and PCA.
|
|
algorithms: IHS, Brovey, and PCA.
|
|
<br><br>
|
|
<br><br>
|
|
-For <em>IHS pan sharpening</em>, the original 3 lower resolution bands, selected
|
|
|
|
-as red, green and blue channels for creating an RGB composite image, are
|
|
|
|
-transformed into IHS (intensity, hue, and saturation) color space. The
|
|
|
|
-panchromatic band is then substituted for the intensity channel (I), combined
|
|
|
|
-with the original hue (H) and saturation (S) channels, and transformed back to
|
|
|
|
-RGB color space at the higher resolution of the panchromatic band. The
|
|
|
|
|
|
+For <em>IHS pan sharpening</em>, the original 3 lower resolution bands, selected
|
|
|
|
+as red, green and blue channels for creating an RGB composite image, are
|
|
|
|
+transformed into IHS (intensity, hue, and saturation) color space. The
|
|
|
|
+panchromatic band is then substituted for the intensity channel (I), combined
|
|
|
|
+with the original hue (H) and saturation (S) channels, and transformed back to
|
|
|
|
+RGB color space at the higher resolution of the panchromatic band. The
|
|
algorithm for this can be represented as: RGB -> IHS -> [pan]HS -> RGB.
|
|
algorithm for this can be represented as: RGB -> IHS -> [pan]HS -> RGB.
|
|
<br><br>
|
|
<br><br>
|
|
-With a <em>Brovey pan sharpening</em>, each of the 3 lower resolution bands and
|
|
|
|
-panchromatic band are combined using the following algorithm to calculate
|
|
|
|
|
|
+With a <em>Brovey pan sharpening</em>, each of the 3 lower resolution bands and
|
|
|
|
+panchromatic band are combined using the following algorithm to calculate
|
|
3 new bands at the higher resolution (example for band 1):
|
|
3 new bands at the higher resolution (example for band 1):
|
|
<pre>
|
|
<pre>
|
|
- band1
|
|
|
|
|
|
+ band1
|
|
new band1 = ----------------------- * panband
|
|
new band1 = ----------------------- * panband
|
|
band1 + band2 + band3
|
|
band1 + band2 + band3
|
|
</pre>
|
|
</pre>
|
|
-In <em>PCA pan sharpening</em>, a principal component analysis is performed on the
|
|
|
|
|
|
+In <em>PCA pan sharpening</em>, a principal component analysis is performed on the
|
|
original 3 lower resolution bands to create 3 principal component images
|
|
original 3 lower resolution bands to create 3 principal component images
|
|
(PC1, PC2, and PC3) and their associated eigenvectors (EV), such that:
|
|
(PC1, PC2, and PC3) and their associated eigenvectors (EV), such that:
|
|
<pre>
|
|
<pre>
|
|
-
|
|
|
|
|
|
+
|
|
band1 band2 band3
|
|
band1 band2 band3
|
|
PC1: EV1-1 EV1-2 EV1-3
|
|
PC1: EV1-1 EV1-2 EV1-3
|
|
PC2: EV2-1 EV2-2 EV2-3
|
|
PC2: EV2-1 EV2-2 EV2-3
|
|
-PC3: EV3-1 EV3-2 EV3-3
|
|
|
|
|
|
+PC3: EV3-1 EV3-2 EV3-3
|
|
|
|
|
|
and
|
|
and
|
|
|
|
|
|
PC1 = EV1-1 * band1 + EV1-2 * band2 + EV1-3 * band3 - mean(bands 1,2,3)
|
|
PC1 = EV1-1 * band1 + EV1-2 * band2 + EV1-3 * band3 - mean(bands 1,2,3)
|
|
|
|
|
|
</pre>
|
|
</pre>
|
|
-An inverse PCA is then performed, substituting the panchromatic band for PC1.
|
|
|
|
-To do this, the eigenvectors matrix is inverted (in this case transposed), the
|
|
|
|
-PC images are multiplied by the eigenvectors with the panchromatic band
|
|
|
|
-substituted for PC1, and mean of each band is added to each transformed image
|
|
|
|
|
|
+An inverse PCA is then performed, substituting the panchromatic band for PC1.
|
|
|
|
+To do this, the eigenvectors matrix is inverted (in this case transposed), the
|
|
|
|
+PC images are multiplied by the eigenvectors with the panchromatic band
|
|
|
|
+substituted for PC1, and mean of each band is added to each transformed image
|
|
band using the following algorithm (example for band 1):
|
|
band using the following algorithm (example for band 1):
|
|
<pre>
|
|
<pre>
|
|
|
|
|
|
-band1' = pan * EV1-1 + PC2 * EV2-1 + PC3 * EV3-1 + mean(band1)
|
|
|
|
-
|
|
|
|
|
|
+band1 = pan * EV1-1 + PC2 * EV1-2 + PC3 * EV1-3 + mean(band1)
|
|
|
|
+
|
|
</pre>
|
|
</pre>
|
|
-The assignment of the channels depends on the satellite. Examples of satellite
|
|
|
|
-imagery with high resolution panchromatic bands, and lower resolution spectral
|
|
|
|
|
|
+The assignment of the channels depends on the satellite. Examples of satellite
|
|
|
|
+imagery with high resolution panchromatic bands, and lower resolution spectral
|
|
bands include Landsat 7 ETM, QuickBird, and SPOT.
|
|
bands include Landsat 7 ETM, QuickBird, and SPOT.
|
|
<br>
|
|
<br>
|
|
<h2>NOTES</h2>
|
|
<h2>NOTES</h2>
|
|
-The module currently only works for 8-bit images.
|
|
|
|
|
|
+The module works for 2-bit to 30-bit images. All images are rescaled to 8-bit
|
|
|
|
+for processing. By default, the entire possible range for the selected bit depth is
|
|
|
|
+rescaled to 8-bit. For example, the range of 0-65535 for a 16-bit image is
|
|
|
|
+rescaled to 0-255). The 'r' flag allows the range of pixel values actually
|
|
|
|
+present in an image rescaled to a full 8-bit range. For example, a 16 bit image
|
|
|
|
+might only have pixels that range from 70 to 35000; this range of 70-35000 would
|
|
|
|
+be rescaled to 0-255. This can give better visual distinction to features,
|
|
|
|
+especially when the range of actual values in an image only occupies a
|
|
|
|
+relatively limited portion of the possible range.
|
|
<br><br>
|
|
<br><br>
|
|
-The command temporarily changes the computational region to the high
|
|
|
|
-resolution of the panchromatic band during sharpening calculations, then
|
|
|
|
-restores the previous region settings. The current region coordinates (and
|
|
|
|
-null values) are respected. The high resolution panchromatic image is
|
|
|
|
-histogram matched to the band it is replaces prior to substitution (i.e., the
|
|
|
|
-intensity channel for IHS sharpening, the low res band selected for each color
|
|
|
|
|
|
+i.pansharpen temporarily changes the computational region to the high
|
|
|
|
+resolution of the panchromatic band during sharpening calculations, then
|
|
|
|
+restores the previous region settings. The current region coordinates (and
|
|
|
|
+null values) are respected. The high resolution panchromatic image is
|
|
|
|
+histogram matched to the band it is replaces prior to substitution (i.e., the
|
|
|
|
+intensity channel for IHS sharpening, the low res band selected for each color
|
|
channel with Brovey sharpening, and the PC1 image for PCA sharpening).
|
|
channel with Brovey sharpening, and the PC1 image for PCA sharpening).
|
|
<br><br>
|
|
<br><br>
|
|
-By default, the command will attempt to employ parallel processing, using
|
|
|
|
-up to 3 cores simultaneously. The -s flag will disable parallel processing,
|
|
|
|
|
|
+By default, the command will attempt to employ parallel processing, using
|
|
|
|
+up to 3 cores simultaneously. The -s flag will disable parallel processing,
|
|
but does use an optimized r.mapcalc expression to reduce disk I/O.
|
|
but does use an optimized r.mapcalc expression to reduce disk I/O.
|
|
<br><br>
|
|
<br><br>
|
|
-The three pan-sharpened output channels may be combined with <em>d.rgb</em> or
|
|
|
|
|
|
+The three pan-sharpened output channels may be combined with <em>d.rgb</em> or
|
|
<em>r.composite</em>. Colors may be optionally optimized with <em>i.colors.enhance</em>.
|
|
<em>r.composite</em>. Colors may be optionally optimized with <em>i.colors.enhance</em>.
|
|
-While the resulting color image will be at the higher resolution in all cases,
|
|
|
|
-the 3 pan sharpening algorithms differ in terms of spectral response.
|
|
|
|
|
|
+While the resulting color image will be at the higher resolution in all cases,
|
|
|
|
+the 3 pan sharpening algorithms differ in terms of spectral response.
|
|
|
|
|
|
<h2>EXAMPLES</h2>
|
|
<h2>EXAMPLES</h2>
|
|
|
|
|
|
@@ -85,14 +93,14 @@ the 3 pan sharpening algorithms differ in terms of spectral response.
|
|
Pan sharpening of a Landsat image from Boulder, Colorado, USA:
|
|
Pan sharpening of a Landsat image from Boulder, Colorado, USA:
|
|
|
|
|
|
<div class="code"><pre>
|
|
<div class="code"><pre>
|
|
-# R, G, B composite at 30m
|
|
|
|
|
|
+# R, G, B composite at 30m
|
|
g.region raster=p034r032_7dt20010924_z13_10 -p
|
|
g.region raster=p034r032_7dt20010924_z13_10 -p
|
|
-d.rgb b=p034r032_7dt20010924_z13_10 g=lp034r032_7dt20010924_z13_20
|
|
|
|
|
|
+d.rgb b=p034r032_7dt20010924_z13_10 g=lp034r032_7dt20010924_z13_20
|
|
r=p034r032_7dt20010924_z13_30
|
|
r=p034r032_7dt20010924_z13_30
|
|
|
|
|
|
# i.pansharpen with IHS algorithm
|
|
# i.pansharpen with IHS algorithm
|
|
-i.pansharpen red=p034r032_7dt20010924_z13_30 green=p034r032_7dt20010924_z13_20
|
|
|
|
- blue=p034r032_7dt20010924_z13_10 pan=p034r032_7dp20010924_z13_80
|
|
|
|
|
|
+i.pansharpen red=p034r032_7dt20010924_z13_30 green=p034r032_7dt20010924_z13_20
|
|
|
|
+ blue=p034r032_7dt20010924_z13_10 pan=p034r032_7dp20010924_z13_80
|
|
output=ihs321 method=ihs
|
|
output=ihs321 method=ihs
|
|
|
|
|
|
# ... likewise with method=brovey and method=pca
|
|
# ... likewise with method=brovey and method=pca
|
|
@@ -109,14 +117,14 @@ d.rgb b=ihs321_blue g=ihs321_green r=ihs321_red
|
|
<table border=1>
|
|
<table border=1>
|
|
<tr>
|
|
<tr>
|
|
<td align=center>
|
|
<td align=center>
|
|
- <img src="i_pansharpen_rgb_landsat321.jpg" alt="R, G, B composite of Landsat at 30m">
|
|
|
|
|
|
+ <img src="i_pansharpen_rgb_landsat542.jpg" alt="R, G, B composite of Landsat at 30m">
|
|
<br>
|
|
<br>
|
|
<font size="-1">
|
|
<font size="-1">
|
|
<i>R, G, B composite of Landsat at 30m</i>
|
|
<i>R, G, B composite of Landsat at 30m</i>
|
|
</font>
|
|
</font>
|
|
</td>
|
|
</td>
|
|
<td align=center>
|
|
<td align=center>
|
|
- <img src="i_pansharpen_rgb_brovey321.jpg" alt="R, G, B composite of Brovey sharpened image at 15m">
|
|
|
|
|
|
+ <img src="i_pansharpen_rgb_brovey542.jpg" alt="R, G, B composite of Brovey sharpened image at 15m">
|
|
<br>
|
|
<br>
|
|
<font size="-1">
|
|
<font size="-1">
|
|
<i>R, G, B composite of Brovey sharpened image at 15m</i>
|
|
<i>R, G, B composite of Brovey sharpened image at 15m</i>
|
|
@@ -125,14 +133,14 @@ d.rgb b=ihs321_blue g=ihs321_green r=ihs321_red
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
<td align=center>
|
|
<td align=center>
|
|
- <img src="i_pansharpen_rgb_ihs321.jpg" alt="R, G, B composite of IHS sharpened image at 15m">
|
|
|
|
|
|
+ <img src="i_pansharpen_rgb_ihs542.jpg" alt="R, G, B composite of IHS sharpened image at 15m">
|
|
<br>
|
|
<br>
|
|
<font size="-1">
|
|
<font size="-1">
|
|
<i>R, G, B composite of IHS sharpened image at 15m</i>
|
|
<i>R, G, B composite of IHS sharpened image at 15m</i>
|
|
</font>
|
|
</font>
|
|
</td>
|
|
</td>
|
|
<td align=center>
|
|
<td align=center>
|
|
- <img src="i_pansharpen_rgb_pca321.jpg" alt="R, G, B composite of PCA sharpened image at 15m">
|
|
|
|
|
|
+ <img src="i_pansharpen_rgb_pca542.jpg" alt="R, G, B composite of PCA sharpened image at 15m">
|
|
<br>
|
|
<br>
|
|
<font size="-1">
|
|
<font size="-1">
|
|
<i>R, G, B composite of PCA sharpened image at 15m"</i>
|
|
<i>R, G, B composite of PCA sharpened image at 15m"</i>
|
|
@@ -175,7 +183,6 @@ i.colors.enhance r=lsat7_2002_ihs_red g=lsat7_2002_ihs_green b=lsat7_2002_ihs_bl
|
|
<h2>SEE ALSO</h2>
|
|
<h2>SEE ALSO</h2>
|
|
|
|
|
|
<em>
|
|
<em>
|
|
-<a href="i.colors.enhance.html">i.colors.enhance</a>,
|
|
|
|
<a href="i.his.rgb.html">i.his.rgb</a>,
|
|
<a href="i.his.rgb.html">i.his.rgb</a>,
|
|
<a href="i.rgb.his.html">i.rgb.his</a>,
|
|
<a href="i.rgb.his.html">i.rgb.his</a>,
|
|
<a href="i.pca.html">i.pca</a>,
|
|
<a href="i.pca.html">i.pca</a>,
|
|
@@ -193,26 +200,26 @@ i.colors.enhance r=lsat7_2002_ihs_red g=lsat7_2002_ihs_green b=lsat7_2002_ihs_bl
|
|
Proc. of the 14th International Symposium on Remote Sensing
|
|
Proc. of the 14th International Symposium on Remote Sensing
|
|
of Environment, San Jose, Costa Rica, 23-30 April, pp. 1001-1007
|
|
of Environment, San Jose, Costa Rica, 23-30 April, pp. 1001-1007
|
|
|
|
|
|
-<li>Amarsaikhan, D., Douglas, T. (2004). Data fusion and multisource image
|
|
|
|
|
|
+<li>Amarsaikhan, D., Douglas, T. (2004). Data fusion and multisource image
|
|
classification. International Journal of Remote Sensing, 25(17), 3529-3539.
|
|
classification. International Journal of Remote Sensing, 25(17), 3529-3539.
|
|
|
|
|
|
-<li>Behnia, P. (2005). Comparison between four methods for data fusion of ETM+
|
|
|
|
|
|
+<li>Behnia, P. (2005). Comparison between four methods for data fusion of ETM+
|
|
multispectral and pan images. Geo-spatial Information Science, 8(2), 98-103.
|
|
multispectral and pan images. Geo-spatial Information Science, 8(2), 98-103.
|
|
-
|
|
|
|
-<li>Du, Q., Younan, N. H., King, R., Shah, V. P. (2007). On the Performance
|
|
|
|
- Evaluation of Pan-Sharpening Techniques. Geoscience and Remote Sensing
|
|
|
|
|
|
+
|
|
|
|
+<li>Du, Q., Younan, N. H., King, R., Shah, V. P. (2007). On the Performance
|
|
|
|
+ Evaluation of Pan-Sharpening Techniques. Geoscience and Remote Sensing
|
|
Letters, IEEE, 4(4), 518-522.
|
|
Letters, IEEE, 4(4), 518-522.
|
|
|
|
|
|
-<li>Karathanassi, V., Kolokousis, P., Ioannidou, S. (2007). A comparison
|
|
|
|
- study on fusion methods using evaluation indicators. International Journal
|
|
|
|
|
|
+<li>Karathanassi, V., Kolokousis, P., Ioannidou, S. (2007). A comparison
|
|
|
|
+ study on fusion methods using evaluation indicators. International Journal
|
|
of Remote Sensing, 28(10), 2309-2341.
|
|
of Remote Sensing, 28(10), 2309-2341.
|
|
|
|
|
|
<li>Neteler, M, D. Grasso, I. Michelazzi, L. Miori, S. Merler, and C.
|
|
<li>Neteler, M, D. Grasso, I. Michelazzi, L. Miori, S. Merler, and C.
|
|
- Furlanello (2005). An integrated toolbox for image registration, fusion and
|
|
|
|
|
|
+ Furlanello (2005). An integrated toolbox for image registration, fusion and
|
|
classification. International Journal of Geoinformatics, 1(1):51-61
|
|
classification. International Journal of Geoinformatics, 1(1):51-61
|
|
(<a href="http://www.grassbook.org/wp-content/uploads/neteler/papers/neteler2005_IJG_051-061_draft.pdf">PDF</a>)
|
|
(<a href="http://www.grassbook.org/wp-content/uploads/neteler/papers/neteler2005_IJG_051-061_draft.pdf">PDF</a>)
|
|
|
|
|
|
-<li>Pohl, C, and J.L van Genderen (1998). Multisensor image fusion in remote
|
|
|
|
|
|
+<li>Pohl, C, and J.L van Genderen (1998). Multisensor image fusion in remote
|
|
sensing: concepts, methods and application. Int. J. of Rem. Sens., 19, 823-854.
|
|
sensing: concepts, methods and application. Int. J. of Rem. Sens., 19, 823-854.
|
|
</ul>
|
|
</ul>
|
|
|
|
|
|
@@ -222,6 +229,6 @@ i.colors.enhance r=lsat7_2002_ihs_red g=lsat7_2002_ihs_green b=lsat7_2002_ihs_bl
|
|
|
|
|
|
Michael Barton (Arizona State University, USA)<br>
|
|
Michael Barton (Arizona State University, USA)<br>
|
|
with contributions from Markus Neteler (ITC-irst, Italy); Glynn Clements;
|
|
with contributions from Markus Neteler (ITC-irst, Italy); Glynn Clements;
|
|
-Luca Delucchi (Fondazione E. Mach, Italy); Markus Metz; and Hamish Bowman.
|
|
|
|
|
|
+Luca Delucchi (Fondazione E. Mach, Italy); Markus Metz; and Hamish Bowman.
|
|
|
|
|
|
<p><i>Last changed: $Date$</i>
|
|
<p><i>Last changed: $Date$</i>
|