DeepCreamPy/README.md

121 lines
4.9 KiB
Markdown
Raw Normal View History

2018-02-09 17:46:53 +00:00
# DeepMindBreak
2018-02-10 04:06:25 +00:00
*Decensoring Hentai with Deep Neural Networks*
2018-02-11 05:50:40 +00:00
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.
2018-02-10 03:36:07 +00:00
2018-02-12 04:29:10 +00:00
# **THIS PROJECT IS STILL IN DEVELOPMENT. DO NOT BE DISAPPOINTED IF THE RESULTS AREN'T AS GOOD AS YOU EXPECT.**
2018-02-11 21:41:07 +00:00
2018-02-11 19:12:38 +00:00
![Censored, decensored](/readme_images/collage.png)
2018-02-11 18:57:44 +00:00
2018-02-10 03:36:07 +00:00
# Limitations
2018-02-11 05:50:40 +00:00
This project is LIMITED in capability. It is a proof of concept of ongoing research.
2018-02-10 03:36:07 +00:00
2018-02-17 03:36:33 +00:00
The decensorship is intended to ONLY work on color hentai images that have minor bar censorship of the penis or vagina.
2018-02-10 03:36:07 +00:00
It does NOT work with:
- Black and white images
2018-02-11 19:16:39 +00:00
- Monochrome images
- Hentai containing screentones (e.g. printed hentai)
2018-02-10 03:36:07 +00:00
- Real life porn
- Mosaic censorship
- Censorship of nipples
2018-02-11 19:16:39 +00:00
- Censorship of anus
2018-02-10 03:37:39 +00:00
- Animated gifs/videos
2018-02-10 00:48:37 +00:00
2018-02-11 05:50:40 +00:00
In particular, if a vagina or penis is completely censored out, inpainting will be ineffective.
2018-02-10 03:55:29 +00:00
2018-02-11 21:41:07 +00:00
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.
2018-02-10 00:48:37 +00:00
# Dependencies
2018-02-12 17:30:15 +00:00
- Python 2/3
2018-02-10 00:48:37 +00:00
- TensorFlow 1.5
2018-02-10 03:16:21 +00:00
- Pillow
2018-02-10 04:01:07 +00:00
- tqdm
2018-02-12 17:08:02 +00:00
- scipy (only needed if poisson blending is enabled in decensor.py)
- pyamg (only needed if poisson blending is enabled in decensor.py)
2018-02-11 05:50:40 +00:00
- matplotlib (only for running test.py)
2018-02-10 00:48:37 +00:00
2018-02-12 17:31:02 +00:00
No GPU required! Tested on Ubuntu 16.04 and Windows.
2018-02-12 16:00:34 +00:00
2018-02-12 17:30:15 +00:00
Poisson blending is disabled by default since it has little effect on output quality.
Pillow, tqdm, scipy, pyamg, and matplotlib can all be installed using pip.
2018-02-12 16:00:34 +00:00
2018-02-10 00:48:37 +00:00
# Model
2018-02-12 04:29:10 +00:00
The pretrained model can be downloaded from https://drive.google.com/open?id=1mWHYSj0LDSbJQQxjR4hUMykQkVve2U3Q.
2018-02-10 00:48:37 +00:00
2018-02-11 20:12:57 +00:00
Unzip the contents into the /models/ folder.
2018-02-10 00:48:37 +00:00
# Usage
2018-02-12 14:01:14 +00:00
2018-02-10 02:03:26 +00:00
## I. Decensoring hentai
2018-02-10 01:51:41 +00:00
2018-02-11 20:12:57 +00:00
![Guide](/readme_images/guide.png)
2018-02-10 03:16:21 +00:00
The decensorship process is fairly involved. A user interface will eventually be released to streamline the process.
2018-02-10 01:51:41 +00:00
2018-02-10 03:17:37 +00:00
Using image editing software like Photoshop or GIMP, paint the areas you want to decensor the color with RGB values of (0,255,0). For each censored region, crop 128 x 128 size images containing the censored regions from your images and save them as new ".png" images.
2018-02-10 03:16:21 +00:00
2018-02-11 05:50:40 +00:00
Move the cropped images to the "decensor_input_images" directory. Decensor the images by running
2018-02-10 03:16:21 +00:00
```
$ python decensor.py
```
2018-02-11 05:50:40 +00:00
Decensored images will be saved to the "decensor_output_images" directory. Paste the decensored images back into the original image.
2018-02-10 03:16:21 +00:00
2018-02-11 05:50:40 +00:00
## II. Train the pretrained model on custom dataset
2018-02-10 02:03:26 +00:00
2018-02-11 06:00:15 +00:00
Put your custom dataset for training in the "data/images" directory and convert images to npy format.
2018-02-10 02:03:26 +00:00
```
2018-02-11 05:51:23 +00:00
$ cd training_data
2018-02-10 02:03:26 +00:00
$ python to_npy.py
```
2018-02-10 03:19:30 +00:00
Train pretrained model on your custom dataset.
```
$ python train.py
```
2018-02-10 00:48:37 +00:00
# To do
2018-02-12 17:49:58 +00:00
- ~~Add Python 3 compatibility~~
2018-02-11 20:12:57 +00:00
- Retrain for arbitrary shape censors
2018-02-10 00:48:37 +00:00
- Add a user interface
- Incorporate GAN loss into training
2018-02-10 02:25:48 +00:00
Contributions are welcome!
2018-02-10 00:48:37 +00:00
# License
2018-02-11 19:00:58 +00:00
Example image by dannychoo under [CC BY-NC-SA 2.0 License](https://creativecommons.org/licenses/by-nc-sa/2.0/). The example image is modified from the original, which can be found [here](https://www.flickr.com/photos/dannychoo/16081096643/in/photostream/).
2018-02-10 04:02:04 +00:00
Model is licensed under CC BY-NC 3.0 License.
2018-02-10 01:44:21 +00:00
2018-02-11 19:18:32 +00:00
Code is licensed under MIT License and is modified from tadax's project [Globally and Locally Consistent Image Completion with TensorFlow ](https://github.com/tadax/glcic), which is an implementation of the paper [Globally and Locally Consistent Image Completion](http://hi.cs.waseda.ac.jp/%7Eiizuka/projects/completion/data/completion_sig2017.pdf). It also has a modified version of parosky's project [poissonblending](https://github.com/parosky/poissonblending).
2018-02-10 06:58:40 +00:00
---
2018-02-10 00:48:37 +00:00
2018-02-11 19:18:32 +00:00
Copyright (c) 2018 tadax, parosky, deeppomf
2018-02-10 00:48:37 +00:00
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
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
2018-02-10 02:04:58 +00:00
SOFTWARE.