Max Reimann
commited on
Commit
·
e02f71c
1
Parent(s):
bc12a5f
Add github readme
Browse files- README.md +29 -1
- images/screen_wise_demo.jpg +3 -0
- pages/Readme.py +1 -0
README.md
CHANGED
|
@@ -10,5 +10,33 @@ tags: [Style Transfer,Image Synthesis,Editing,Painting]
|
|
| 10 |
pinned: false
|
| 11 |
license: mit
|
| 12 |
---
|
|
|
|
| 13 |
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
pinned: false
|
| 11 |
license: mit
|
| 12 |
---
|
| 13 |
+
# White-box Style Transfer Editing (WISE) Demo
|
| 14 |
|
| 15 |
+
This app demonstrates the editing capabilities of the [White-box Style Transfer Editing (WISE) framework](https://github.com/winfried-ripken/wise).
|
| 16 |
+
It optimizes the parameters of classical image processing filters to match a given style image.
|
| 17 |
+
After optimization, parameters can be tuned by hand to achieve a desired look.
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
### How does it work?
|
| 21 |
+
We provide a small stylization effect that contains several filters such as bump mapping or edge enhancement that can be optimized. The optimization yields so-called parameter masks, which contain per pixel parameter settings of each filter.
|
| 22 |
+
|
| 23 |
+
## 🚀 Try it out 🚀
|
| 24 |
+
**Our demo is now on huggingface: [huggingface/Whitebox-Style-Transfer-Editing](https://huggingface.co/spaces/MaxReimann/Whitebox-Style-Transfer-Editing)**
|
| 25 |
+
|
| 26 |
+

|
| 27 |
+
|
| 28 |
+
To run it **locally**, clone the repo recursively and install the dependencies in requirements.txt. Set HUGGINGFACE to false in demo_config.py.
|
| 29 |
+
Then run the streamlit app using `streamlit run Whitebox_style_transfer.py`
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
## Links & Paper
|
| 34 |
+
[Project page](https://ivpg.hpi3d.de/wise/),
|
| 35 |
+
[arxiv link](https://arxiv.org/abs/2207.14606),
|
| 36 |
+
[framework code](https://github.com/winfried-ripken/wise)
|
| 37 |
+
|
| 38 |
+
"WISE: Whitebox Image Stylization by Example-based Learning", by Winfried Lötzsch*, Max Reimann*, Martin Büßemeyer, Amir Semmo, Jürgen Döllner, Matthias Trapp, in ECCV 2022
|
| 39 |
+
|
| 40 |
+
### Further notes
|
| 41 |
+
Pull Requests and further improvements welcome.
|
| 42 |
+
Please note that the shown effect is a minimal pipeline in terms of stylization capability, the much more feature-rich oilpaint and watercolor pipelines we show in our ECCV paper cannot be open-sourced due to IP reasons.
|
images/screen_wise_demo.jpg
ADDED
|
Git LFS Details
|
pages/Readme.py
CHANGED
|
@@ -21,6 +21,7 @@ st.markdown("""
|
|
| 21 |
### Links & Paper
|
| 22 |
[Project page](https://ivpg.hpi3d.de/wise/),
|
| 23 |
[arxiv link](https://arxiv.org/abs/2207.14606)
|
|
|
|
| 24 |
|
| 25 |
"WISE: Whitebox Image Stylization by Example-based Learning", by Winfried Lötzsch*, Max Reimann*, Martin Büßemeyer, Amir Semmo, Jürgen Döllner, Matthias Trapp, in ECCV 2022
|
| 26 |
|
|
|
|
| 21 |
### Links & Paper
|
| 22 |
[Project page](https://ivpg.hpi3d.de/wise/),
|
| 23 |
[arxiv link](https://arxiv.org/abs/2207.14606)
|
| 24 |
+
[demo code](https://github.com/MaxReimann/WISE-Editing)
|
| 25 |
|
| 26 |
"WISE: Whitebox Image Stylization by Example-based Learning", by Winfried Lötzsch*, Max Reimann*, Martin Büßemeyer, Amir Semmo, Jürgen Döllner, Matthias Trapp, in ECCV 2022
|
| 27 |
|