Evaluation of algorithms for the fusion of multispectral and panchrome images in python
In the conducted research, three fusion algorithms were evaluated for combining the panchromatic image with the RGB bands of Landsat 8 satellite images. The analyzed algorithms were Brovey, EIHS, and Averaging. The objective was to determine which algorithm produces the best results in terms of spatial resolution enhancement and visual quality of the final image.
The Brovey algorithm is based on the intensity relationship between the panchromatic and RGB bands. This method assigns a weight to each RGB band based on its relative contribution to the total intensity of the original image. The panchromatic band is then fused with the weighted RGB bands to obtain a final image.
On the other hand, the Enhanced Intensity Hue Saturation (EIHS) algorithm focuses on improving the visual quality of the final image. This method preserves the spectral information of the RGB bands while enhancing the spatial resolution using the panchromatic band. The fusion is performed by transforming the original image to the HSV color space, where a modification is made to the intensity component using the information from the panchromatic band.
Lastly, the Averaging algorithm employs a simpler and more direct approach. It involves averaging the pixel values of the panchromatic band with the corresponding pixel values of the RGB bands. This method does not consider the intensity relationship between the bands and mainly focuses on improving spatial resolution.
To evaluate the algorithms, various evaluation metrics such as the ERGAS and RMSE were utilized. Visual tests were also conducted to assess the quality of the fused image in terms of sharpness, contrast, and color fidelity.
The evaluation results indicated that the Brovey algorithm exhibited a significant improvement in spatial resolution of the fused image but sometimes introduced visual artifacts and spectral information loss. On the other hand, the EIHS algorithm managed to enhance the visual quality of the final image while preserving spectral information but showed a lesser improvement in spatial resolution compared to the Brovey algorithm. The Averaging algorithm yielded acceptable results in terms of spatial resolution and visual quality, albeit without standing out in either category.
Comments
Post a Comment