├── LICENSE ├── README.md └── filter_code.7z /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Xin Tao 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Zero-order Reverse Filtering 2 | by [Xin Tao](http://www.xtao.website), Chao Zhou, [Xiaoyong Shen](http://xiaoyongshen.me/), [Jue Wang](http://juew.org), [Jiaya Jia](http://www.cse.cuhk.edu.hk/leojia/). ([pdf](https://arxiv.org/pdf/1704.04037.pdf)) 3 | 4 | ~~Code and data will be available upon paper acceptance.~~ 5 | 6 | ## Filter Toolbox (Updating) 7 | 8 | In this project, we collect many famous image filters for testing. 9 | 10 | And we believe it will be useful and convenient to have one single repo for collection of image filters. 11 | 12 | Currently, our Filter Toolbox contains 16 filters, all of which are from authors' implementation: 13 | - **AMF**: Adaptive Manifolds for Real-Time High-Dimensional Filtering [[project](http://inf.ufrgs.br/~eslgastal/AdaptiveManifolds/)] 14 | - **BFG**: Real-time Edge-Aware Image Processing with the Bilateral Grid [[project](http://groups.csail.mit.edu/graphics/bilagrid/)] 15 | - **RF**: Domain Transform for Edge-Aware Image and Video Processing [[project](http://www.inf.ufrgs.br/~eslgastal/DomainTransform/)] 16 | 17 | - **GF**: Guided Image Filtering [[project](http://kaiminghe.com/eccv10/index.html)] 18 | - **WMF**: 100+ Times Faster Weighted Median Filter [[project](http://www.cse.cuhk.edu.hk/leojia/projects/fastwmedian/)] 19 | - **L0**: Image Smoothing via L0 Gradient Minimization [[project](http://www.cse.cuhk.edu.hk/~leojia/projects/L0smoothing/)] 20 | - **LE**: Edge-preserving Multiscale Image Decompostion based on Local Extrema [[project](http://artis.inrialpes.fr/~Kartic.Subr/research.html)] 21 | - **BFPL**: Fast High-Dimensional Filtering Using the Permutohedral Lattice [[project](http://graphics.stanford.edu/papers/permutohedral/)] 22 | - **RGF**: Rolling Guidance Filter [[project](http://www.cse.cuhk.edu.hk/leojia/projects/rollguidance/)] 23 | ... 24 | 25 | 26 | ## Citation 27 | 28 | If the filter toolbox or our method are useful for your research, please consider citing: 29 | 30 | @article{tao2017defilter, 31 | author = {Xin Tao and 32 | Chao Zhou and 33 | Xiaoyong Shen and 34 | Jue Wang and 35 | Jiaya Jia}, 36 | title = {Zero-order Reverse Filtering}, 37 | journal = {CoRR}, 38 | volume = {abs/1704.04037}, 39 | year     = {2017}, 40 | url = {https://arxiv.org/abs/1704.04037}, 41 | } 42 | 43 | ## Contact 44 | 45 | Please send email to xtao@cse.cuhk.edu.hk 46 | -------------------------------------------------------------------------------- /filter_code.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangsutx/DeFilter/0ce419eade081eda579bb810a73b81f19b4d50c5/filter_code.7z --------------------------------------------------------------------------------