mirror of
https://github.com/Deepshift/DeepCreamPy.git
synced 2025-04-03 07:20:24 +00:00
updated to reflect new pretrained model
This commit is contained in:
parent
e3e59c4e45
commit
b0e90b4583
38
README.md
38
README.md
@ -3,6 +3,8 @@
|
|||||||
|
|
||||||
This project applies an implementation of [Globally and Locally Consistent Image Completion](http://hi.cs.waseda.ac.jp/%7Eiizuka/projects/completion/data/completion_sig2017.pdf) to the problem of hentai decensorship. Using a deep fully convolutional neural network, DeepMindBreak can replace censored artwork in hentai with plausible reconstructions. The user needs to only specify the censored regions.
|
This project applies an implementation of [Globally and Locally Consistent Image Completion](http://hi.cs.waseda.ac.jp/%7Eiizuka/projects/completion/data/completion_sig2017.pdf) to the problem of hentai decensorship. Using a deep fully convolutional neural network, DeepMindBreak can replace censored artwork in hentai with plausible reconstructions. The user needs to only specify the censored regions.
|
||||||
|
|
||||||
|
March 14th, 2018: Updated pretrained model to handle censor bars in any orientation.
|
||||||
|
|
||||||
# **THIS PROJECT IS STILL IN DEVELOPMENT. DO NOT BE DISAPPOINTED IF THE RESULTS AREN'T AS GOOD AS YOU EXPECT.**
|
# **THIS PROJECT IS STILL IN DEVELOPMENT. DO NOT BE DISAPPOINTED IF THE RESULTS AREN'T AS GOOD AS YOU EXPECT.**
|
||||||
|
|
||||||

|

|
||||||
@ -25,8 +27,6 @@ It does NOT work with:
|
|||||||
|
|
||||||
In particular, if a vagina or penis is completely censored out, inpainting will be ineffective.
|
In particular, if a vagina or penis is completely censored out, inpainting will be ineffective.
|
||||||
|
|
||||||
Embarrassingly, because the neural network was trained to decensor horizontally and vertically oriented rectangles, it has trouble with angled rectangles. This will be fixed soon.
|
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
|
|
||||||
- Python 2/3
|
- Python 2/3
|
||||||
@ -34,7 +34,7 @@ Embarrassingly, because the neural network was trained to decensor horizontally
|
|||||||
- Pillow
|
- Pillow
|
||||||
- tqdm
|
- tqdm
|
||||||
- scipy
|
- scipy
|
||||||
- pyamg (only needed if poisson blending is enabled in decensor.py)
|
- pyamg
|
||||||
- matplotlib (only for running test.py)
|
- matplotlib (only for running test.py)
|
||||||
|
|
||||||
No GPU required! Tested on Ubuntu 16.04 and Windows.
|
No GPU required! Tested on Ubuntu 16.04 and Windows.
|
||||||
@ -120,23 +120,23 @@ Code is licensed under CC BY-NC-SA 4.0 License and is modified from tadax's proj
|
|||||||
```
|
```
|
||||||
|
|
||||||
```
|
```
|
||||||
#Copyright (c) 2018 tadax, Seung Shin, parosky
|
# Copyright (c) 2018 tadax, Seung Shin, parosky
|
||||||
#
|
#
|
||||||
#Permission is hereby granted, free of charge, to any person obtaining a copy
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
#of this software and associated documentation files (the "Software"), to deal
|
# of this software and associated documentation files (the "Software"), to deal
|
||||||
#in the Software without restriction, including without limitation the rights
|
# in the Software without restriction, including without limitation the rights
|
||||||
#to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
#copies of the Software, and to permit persons to whom the Software is
|
# copies of the Software, and to permit persons to whom the Software is
|
||||||
#furnished to do so, subject to the following conditions:
|
# furnished to do so, subject to the following conditions:
|
||||||
#
|
#
|
||||||
#The above copyright notice and this permission notice shall be included in all
|
# The above copyright notice and this permission notice shall be included in all
|
||||||
#copies or substantial portions of the Software.
|
# copies or substantial portions of the Software.
|
||||||
#
|
#
|
||||||
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
#IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
#FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
#AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
#LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
#OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
#SOFTWARE.
|
# SOFTWARE.
|
||||||
```
|
```
|
Loading…
x
Reference in New Issue
Block a user