Is there any effective preserve edges Image Decomposition Technique?
1 次查看(过去 30 天)
显示 更早的评论
Hi guys,
I am working on Infrared and Visible Image Fusion task. I want to perform Image decomposition on an image to split an image into base and detail layer. At the same time preserve more edges in the process, is there any technique/method that I could looked into?
Thank you!
0 个评论
回答(1 个)
Vidip Jain
2023-9-7
I understand you want to perform Image decomposition on an image to split it into base and detail layer and at the same time preserve more edges in the process.
One commonly used technique is the application of multi-scale decomposition methods, particularly those based on the concept of multiscale transforms. These methods allow you to extract both the low-frequency components (base layer) and high-frequency components (detail layer) of the image.
Start by loading and preprocessing both images to ensure they have consistent dimensions and intensity ranges. Perform wavelet decomposition on both images using the wavedec2 function, specifying the desired wavelet family and decomposition level.
Combine the wavelet coefficients from the two images, typically using weighted averaging to control the contribution of each modality. Reconstruct the fused image from the combined coefficients using waverec2.
Refer to this documentation for more information:
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!