README.md 3.7 KB
Newer Older
H
hypox64 已提交
1 2
![image](./imgs/hand.gif)
# <img src="./imgs/icon.jpg" width="48">DeepMosaics
HypoX64's avatar
HypoX64 已提交
3
You can use it to automatically remove the mosaics in images and videos, or add mosaics to them.<br>
H
HypoX64 已提交
4 5 6
This porject based on "semantic segmentation" and "Image-to-Image Translation".<br>

* [中文版README](./README_CN.md)<br>
H
hypox64 已提交
7

H
hypox64 已提交
8
### More example
H
HypoX64 已提交
9

H
hypox64 已提交
10 11
origin | auto add mosaic |  auto clean mosaic  
:-:|:-:|:-:
H
HypoX64 已提交
12 13
![image](./imgs/example/lena.jpg) | ![image](./imgs/example/lena_add.jpg) | ![image](./imgs/example/lena_clean.jpg) 
![image](./imgs/example/youknow.png)  | ![image](./imgs/example/youknow_add.png) | ![image](./imgs/example/youknow_clean.png) 
H
HypoX64 已提交
14

H
hypox64 已提交
15
* Compared with [DeepCreamPy](https://github.com/deeppomf/DeepCreamPy)
H
HypoX64 已提交
16

H
hypox64 已提交
17 18
mosaic image | DeepCreamPy | ours  
:-:|:-:|:-:
H
HypoX64 已提交
19 20
![image](./imgs/example/face_a_mosaic.jpg) | ![image](./imgs/example/a_dcp.png) | ![image](./imgs/example/face_a_clean.jpg) 
![image](./imgs/example/face_b_mosaic.jpg) | ![image](./imgs/example/b_dcp.png) | ![image](./imgs/example/face_b_clean.jpg) 
H
HypoX64 已提交
21

H
HypoX64 已提交
22
* Style Transfer
H
HypoX64 已提交
23

H
HypoX64 已提交
24 25 26
origin | to Van Gogh | to winter
:-:|:-:|:-:
![image](./imgs/example/SZU.jpg) | ![image](./imgs/example/SZU_vangogh.jpg) | ![image](./imgs/example/SZU_summer2winter.jpg) 
H
HypoX64 已提交
27

H
HypoX64 已提交
28
An interesting example:[Ricardo Milos to cat](https://www.bilibili.com/video/BV1Q7411W7n6)
H
hypox64 已提交
29

H
hypox64 已提交
30 31 32 33 34
## Run DeepMosaics
You can either run DeepMosaics via pre-built binary package or from source.<br>

### Pre-built binary package
For windows, we bulid a GUI version for easy test.<br>
H
HypoX64 已提交
35 36
Download this version and pre-trained model via [[Google Drive]](https://drive.google.com/open?id=1LTERcN33McoiztYEwBxMuRjjgxh4DEPs)  [[百度云,提取码1x0a]](https://pan.baidu.com/s/10rN3U3zd5TmfGpO_PEShqQ) <br>
* [[How to use]](./docs/exe_help.md)<br>
H
hypox64 已提交
37

H
hypox64 已提交
38
![image](./imgs/GUI.png)<br>
H
hypox64 已提交
39
Attentions:<br>
H
HypoX64 已提交
40

H
hypox64 已提交
41
  - Require Windows_x86_64, Windows10 is better.<br>
H
HypoX64 已提交
42 43 44 45
  - Different pre-trained models are suitable for different effects.[[Introduction to pre-trained models]](./docs/pre-trained_models_introduction.md)<br>
  - Run time depends on computer performance(The current version does not support gpu, if you need to use gpu please run source).<br>
  - If output video cannot be played, you can try with [potplayer](https://daumpotplayer.com/download/).<br>
  - GUI version update slower than source.<br>
H
hypox64 已提交
46 47 48

### Run from source
#### Prerequisites
H
hypox64 已提交
49 50
  - Linux, Mac OS, Windows
  - Python 3.6+
H
hypox64 已提交
51
  - [ffmpeg 3.4.6](http://ffmpeg.org/)
H
HypoX64 已提交
52
  - [Pytorch 1.0+](https://pytorch.org/)
H
hypox64 已提交
53
  - CPU or NVIDIA GPU + CUDA CuDNN<br>
H
hypox64 已提交
54 55
#### Dependencies
This code depends on opencv-python, torchvision available via pip install.
H
hypox64 已提交
56
#### Clone this repo
HypoX64's avatar
HypoX64 已提交
57 58
```bash
git clone https://github.com/HypoX64/DeepMosaics
HypoX64's avatar
HypoX64 已提交
59
cd DeepMosaics
HypoX64's avatar
HypoX64 已提交
60
```
H
HypoX64 已提交
61
#### Get pre-trained models
62
You can download pre_trained models and put them into './pretrained_models'.<br>
H
HypoX64 已提交
63 64
[[Google Drive]](https://drive.google.com/open?id=1LTERcN33McoiztYEwBxMuRjjgxh4DEPs)  [[百度云,提取码1x0a]](https://pan.baidu.com/s/10rN3U3zd5TmfGpO_PEShqQ)<br>
[[Introduction to pre-trained models]](./docs/pre-trained_models_introduction.md)<br>
H
hypox64 已提交
65

H
hypox64 已提交
66
#### Simple example
H
HypoX64 已提交
67
* Add Mosaic (output video will save in './result')<br>
HypoX64's avatar
HypoX64 已提交
68
```bash
69
python3 deepmosaic.py --media_path ./imgs/ruoruo.jpg --model_path ./pretrained_models/mosaic/add_face.pth --use_gpu -1
HypoX64's avatar
HypoX64 已提交
70
```
H
HypoX64 已提交
71
* Clean Mosaic (output video will save in './result')<br>
HypoX64's avatar
HypoX64 已提交
72
```bash
73
python3 deepmosaic.py --media_path ./result/ruoruo_add.jpg --model_path ./pretrained_models/mosaic/clean_face_HD.pth --use_gpu -1
HypoX64's avatar
HypoX64 已提交
74
```
H
hypox64 已提交
75
#### More parameters
H
HypoX64 已提交
76 77
If you want to test other image or video, please refer to this file.<br>
[[options_introduction.md]](./docs/options_introduction.md) <br>
H
hypox64 已提交
78

HypoX64's avatar
HypoX64 已提交
79
## Acknowledgments
H
hypox64 已提交
80
This code borrows heavily from [[pytorch-CycleGAN-and-pix2pix]](https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix) [[Pytorch-UNet]](https://github.com/milesial/Pytorch-UNet)[[pix2pixHD]](https://github.com/NVIDIA/pix2pixHD).