Why the implementation algorithm for the bilateral filter is so old?
Hello all,
The algorithm implementing the bilateral filter is the old-fashioned pixel-based version of Banduchi and Tomasi.
Nowadays, there are much faster algorithms for the bilateral filter.
If someone answers, I can give her/him some references and even plain C implementations of those algorithms for creating a fork or whatever.
I don't do it myself because I'm not so good at efficient programing.
Cheers!
What do you mean by old? And why C implementation?
I mean that the algorithm implemented in OpenCV is the straightforward pixelwise implementation which is much slower than other more recent formulations. For instance:
I have C and C++ implementations of new formulations.