README.md 1.6 KB
Newer Older
H
Hypo 已提交
1
![image](https://github.com/HypoX64/DeepMosaics/blob/master/hand.gif)
HypoX64's avatar
preview  
HypoX64 已提交
2
# DeepMosaics
HypoX64's avatar
HypoX64 已提交
3 4 5
You can use it to automatically remove the mosaics in images and videos, or add mosaics to them.<br>
This porject based on semantic segmentation and pix2pix.
<br>
H
hypox64 已提交
6 7

## Notice
HypoX64's avatar
HypoX64 已提交
8 9
The code do not include the part of training, I will finish it in my free time.
<br>
H
hypox64 已提交
10

HypoX64's avatar
HypoX64 已提交
11
## Prerequisites
H
hypox64 已提交
12 13
- Linux, (I didn't try this code on Windows or Mac OS)
- Python 3.6+
HypoX64's avatar
HypoX64 已提交
14
- ffmpeg
H
hypox64 已提交
15
- Pytorch 1.0+  [(Old version codes)](https://github.com/HypoX64/DeepMosaics/tree/Pytorch0.4)
HypoX64's avatar
HypoX64 已提交
16
- CPU or NVIDIA GPU + CUDA CuDNN
HypoX64's avatar
HypoX64 已提交
17

HypoX64's avatar
HypoX64 已提交
18 19 20 21
## Getting Started
### Clone this repo:
```bash
git clone https://github.com/HypoX64/DeepMosaics
HypoX64's avatar
HypoX64 已提交
22
cd DeepMosaics
HypoX64's avatar
HypoX64 已提交
23 24
```
### Get pre_trained models and test video
HypoX64's avatar
HypoX64 已提交
25
You can download pre_trained models and test video and replace the files in the project.<br>
H
hypox64 已提交
26 27 28
[[Google Drive]](https://drive.google.com/open?id=10nARsiZoZGcaKw40nQu9fJuRp1oeabPs)
 [[百度云,提取码7thu]](https://pan.baidu.com/s/1IG4bdIiIC9PH9-oEyae5Sg) 

HypoX64's avatar
HypoX64 已提交
29
### Dependencies
H
hypox64 已提交
30 31
This code depends on opencv-python, available via pip install.
### Add Mosaic
HypoX64's avatar
HypoX64 已提交
32
```bash
H
hypox64 已提交
33
python3 deepmosaic.py
HypoX64's avatar
HypoX64 已提交
34
```
H
hypox64 已提交
35
### Clean Mosaic
HypoX64's avatar
HypoX64 已提交
36 37 38 39 40
copy the AddMosaic video from './result' to './video_or_image'
```bash
python3 CleanMosaic.py
```
### More parameters
HypoX64's avatar
HypoX64 已提交
41
[[addmosaic_options]](https://github.com/HypoX64/DeepMosaics/blob/master/options/addmosaic_options.py)  [[cleanmosaic_options]](https://github.com/HypoX64/DeepMosaics/blob/master/options/cleanmosaic_options.py)
HypoX64's avatar
HypoX64 已提交
42 43
<br>
## Acknowledgments
HypoX64's avatar
HypoX64 已提交
44
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).