登录 注册
当前位置:主页 > 资源下载 > 31 > 代码实现曲率滤波

代码实现曲率滤波

  • 更新:2024-06-16 09:41:02
  • 大小:5.3MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:机器学习 - 人工智能
  • 格式:ZIP

资源介绍

龚元浩曲率滤波代码,python和matlab语言。This code was developed by Yuanhao Gong during his PhD at MOSAIC Group. Please cite Yuanhao's PhD thesis if you use this code in your work. Thank you! ============================================================= @phdthesis{gong:phd, title={Spectrally regularized surfaces}, author={Gong, Yuanhao}, year={2015}, school={ETH Zurich, Nr. 22616}, note={http://dx.doi.org/10.3929/ethz-a-010438292}} ============================================================= FAQ: 1) Why dual mesh (DM) structure is needed? There are two reasons. First, these four sets guarantee the convergence. Second, we can use the updated neighbors for current position. Therefore, it is more computational efficient. 2) What is the difference between these three filters? In general, GC filter is better in preserving details, compared with the other two. And TV filter is better in removing noise as well as details. MC filter is between these two. These three filters are correspond to three types of variational models. User should decide which prior is to be assumed about the ground truth. 3) What is the difference between split and nosplit scheme? In general, splitting the image into four sets and looping on them is computational faster. However, in some cases like deconvolution, we need to merge the four sets after every iteration. So, it is better do nosplit scheme. These two lead to exactly the same result. The split code is just more cache friendly.