Git Product home page Git Product logo

curvaturefilter's Introduction

Curvature filters are efficient solvers for variational models.

These curvature filters are developed by Yuanhao Gong during his PhD. MC filter and TV filter are exactly the same as described in the paper. But the GC filter is slightly modified. Please cite following papers if you use curvature filter in your work. Thank you!

📚 The Paper. The general theory is in Chapter Six of PhD thesis (downloaded 17,000+)

📕 Presentation of Gaussian Curvature Filter: LinkedIn, Dropbox or Baidu.

📘 Poster of Bernstein Filter can be found here.

🎁 a short introduction in Chinese (中文): Zhihu(Editors' Choice) or this Zhihu

🏆 source code in C++ and Java can also be found from MOSAIC group

🔔 The kernels summary and one example how to get the kernel can be found here.

📧 [email protected] or join the Curvature Filter Forum


@ARTICLE{gong:cf, 
    author={Yuanhao Gong and Ivo F. Sbalzarini}, 
    journal={IEEE Transactions on Image Processing}, 
    title={Curvature filters efficiently reduce certain variational energies}, 
    year={2017}, 
    volume={26}, 
    number={4}, 
    pages={1786-1798}, 
    doi={10.1109/TIP.2017.2658954}, 
    ISSN={1057-7149}, 
    month={April},}

@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}}
	
@article{gong:gc,
    Author = {Yuanhao Gong and Ivo F. Sbalzarini},
    Journal = {Intl. Conf. Image Proc. (ICIP)},
    Month = {September},
    Pages = {534--538},
    Title = {Local weighted {G}aussian curvature for image processing},
    Year = {2013}}

Curvature filters' philosophy

Traditional solvers, such as gradient descent or Euler Lagrange Euqation, start at the total energy and use diffusion scheme to carry out the minimization. When the initial condition is the original image, the data fitting energy always increases while the regularization energy always reduces during the optimization, as illustrated in the below figure. Thus, regularization energy must be the dominant part since the total energy has to decrease.

Therefore, Curvature filters focus on minimizing the regularization term, whose minimizers are already known. For example, if the regularization is Gaussian curvature, the developable surfaces minimize this energy. Therefore, in curvature filter, developable surfaces are used to approximate the data. As long as the decreased amount in the regularization part is larger than the increased amount in the data fitting energy, the total energy is reduced.

image


Features

Theoretical Practical
Generality: handle arbitrary data fitting term (BlackBox)  image Efficient: three or four order of magnitude faster than traditional solvers  image
Convergence: theoretically guaranteed  image Implementation: 40 lines in Matlab and 100 lines in C++  image

Faster and Faster

Filter Bilateral Filter Guided Filter Guided Filter MC Filter GC Filter Bernstein Filter
Lang. C++ Matlab C++ C++ C++ C++
MilliSec. 103 514 130 8 (or 327 MPixels/sec) 11 7

Running time with 10 iterations on 512X512 Lena image. Matlab version is R2015a and GCC version is 5.1. All tests are on a Thinkpad T410 with i7-620M core CPU (2.6GHz). We take the time for 100 iterations and divide it by 10. On average, curvature filters take 1 millisecond per iteration.

On my new taptop(Thinkpad T470p, NVIDIA GeForce 940MX, 384 CUDA cores), GPU version of MC filter can achieve 2500 MPixels/Second with shared memory and single precision.

On the TITAN Xp card, MC filter can achieve 33.2 Giga Pixels/Second with shared memory and single precision. On the Tesla K40c card (2880 cores), MC filter can achieve 8090 MPixels/Second with shared memory and single precision.


Example Applications

1) Denoising

image The noise free test image can be downloaded here

2) Only minimize the regularization

GC = Gaussian Curvature, MC = Mean Curvature, TV = Total Variation image

3) Minimize a variational model, showing the line profile

We show three lines' profiles during minimizing a mean curvature regularized model (MC filter used).

 image image
image image

4) Cartoon Texture Decomposition

image

5) Registration

from left to right: original reference image, distorted source image, registered results by TV filter, MC filter and GC filter. image


On Triangular Meshes (preliminary results, p.195 in the thesis)

original mesh (left) and processed mesh (right), the energy profile is shown in the middle. image


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.

  1. 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.

  1. 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.

curvaturefilter's People

Contributors

tanweihou avatar yuanhaogong avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

curvaturefilter's Issues

formula of gaussian curvature filter?

Dear Dr. Yuanhao Gong,
Thanks for your code. But I have a question about the GC filter. In your thesis, Algorithm 11 (also Algorithm 1 in the TIP paper) defines the projection distance of Pg as:
d5=U(i-1,j) + U(i,j-1) - U(i-1,j-1) - U(i,j)
However, in your code it becomes
d5=[U(i-1,j) + U(i,j-1) + U(i-1,j-1)]/3 - U(i,j)
I think these two formulas are different, but which one is correct?

在matlab的代码里有一个疑问

在matlab代码CF.m 中求梯度的时候:
function [gx, gy]=mygrad(im)
gx=[im(:,2)-im(:,1) (im(:,3:end)-im(:,1:end-2))./2 im(:,end)-im(:,end-1)];
gy=[im(2,:)-im(1,:) ; (im(3:end,:)-im(1:end-2,:))./2 ; im(end,:)-im(end-1,:)];

这里面中间部分是不是 应该把**(im(:,3:end)-im(:,1:end-2))./2** 改成 (im(:,3:end-1)-im(:,2:end-2))./2

Run Time and Comparison

Could you add run time data on HD images?
How is it compared to the Bilateral Filter?

Thank You,

Guided image example?

Thank you for this work. It is very interesting.

I am still learning variational filters, and would like to apply this for use in contrast enhancement. Would you have any examples I could start from?

Also is there a guided filtering example I could work from? I would like to see how I can use this in place of the typical guided filter.

Thanks

The BF nosplit scheme does not give the same result as split scheme

This is very strange to me, because we use the same scheme to compute the result. But the split scheme gives an expected result (smoothed image), while nosplit scheme generates some artifacts at strong edges. The rest filters don't have this issue. So, I don't know where the artifacts come from.

The noSplit BF filter with 300 iterations gives:
cf_nosplit_result
The Split BF filter with 300 iterations gives:
cf_result

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.