-
Notifications
You must be signed in to change notification settings - Fork 106
/
ReadMe.txt
36 lines (24 loc) · 1.43 KB
/
ReadMe.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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.