options.py 6.8 KB
Newer Older
H
hypox64 已提交
1 2
import argparse
import os
3
import sys
H
hypox64 已提交
4

H
hypox64 已提交
5 6 7 8 9 10 11 12 13

class Options():
    def __init__(self):
        self.parser = argparse.ArgumentParser(formatter_class=argparse.ArgumentDefaultsHelpFormatter)
        self.initialized = False

    def initialize(self):

        #base
H
BVDNet  
hypox64 已提交
14
        self.parser.add_argument('--use_gpu', type=str,default='0', help='if -1, use cpu')
15
        self.parser.add_argument('--media_path', type=str, default='./imgs/ruoruo.jpg',help='your videos or images path')
16
        self.parser.add_argument('-ss', '--start_time', type=str, default='00:00:00',help='start position of video, default is the beginning of video')
H
hypox64 已提交
17
        self.parser.add_argument('-t', '--last_time', type=str, default='00:00:00',help='duration of the video, default is the entire video')
H
HypoX64 已提交
18
        self.parser.add_argument('--mode', type=str, default='auto',help='Program running mode. auto | add | clean | style')
19
        self.parser.add_argument('--model_path', type=str, default='./pretrained_models/mosaic/add_face.pth',help='pretrained model path')
H
hypox64 已提交
20
        self.parser.add_argument('--result_dir', type=str, default='./result',help='output media will be saved here')
21
        self.parser.add_argument('--temp_dir', type=str, default='./tmp', help='Temporary files will go here')
H
hypox64 已提交
22
        self.parser.add_argument('--tempimage_type', type=str, default='jpg',help='type of temp image, png | jpg, png is better but occupy more storage space')
H
hypox64 已提交
23
        self.parser.add_argument('--netG', type=str, default='auto',
24
            help='select model to use for netG(Clean mosaic and Transfer style) -> auto | unet_128 | unet_256 | resnet_9blocks | HD | video')
25
        self.parser.add_argument('--fps', type=int, default=0,help='read and output fps, if 0-> origin')
26
        self.parser.add_argument('--no_preview', action='store_true', help='if specified,do not preview images when processing video. eg.(when run it on server)')
H
HypoX64 已提交
27
        self.parser.add_argument('--output_size', type=int, default=0,help='size of output media, if 0 -> origin')
H
hypox64 已提交
28 29
        self.parser.add_argument('--mask_threshold', type=int, default=64,help='threshold of recognize clean or add mosaic position 0~255')

H
hypox64 已提交
30
        #AddMosaic
H
hypox64 已提交
31 32
        self.parser.add_argument('--mosaic_mod', type=str, default='squa_avg',help='type of mosaic -> squa_avg | squa_random | squa_avg_circle_edge | rect_avg | random')
        self.parser.add_argument('--mosaic_size', type=int, default=0,help='mosaic size,if 0 auto size')
H
HypoX64 已提交
33
        self.parser.add_argument('--mask_extend', type=int, default=10,help='extend mosaic area')
H
hypox64 已提交
34
        
H
hypox64 已提交
35
        #CleanMosaic     
36
        self.parser.add_argument('--mosaic_position_model_path', type=str, default='auto',help='name of model use to find mosaic position')
H
HypoX64 已提交
37
        self.parser.add_argument('--traditional', action='store_true', help='if specified, use traditional image processing methods to clean mosaic')
38 39
        self.parser.add_argument('--tr_blur', type=int, default=10, help='ksize of blur when using traditional method, it will affect final quality')
        self.parser.add_argument('--tr_down', type=int, default=10, help='downsample when using traditional method,it will affect final quality')
H
HypoX64 已提交
40 41
        self.parser.add_argument('--no_feather', action='store_true', help='if specified, no edge feather and color correction, but run faster')
        self.parser.add_argument('--all_mosaic_area', action='store_true', help='if specified, find all mosaic area, else only find the largest area')
H
hypox64 已提交
42
        self.parser.add_argument('--medfilt_num', type=int, default=11,help='medfilt window of mosaic movement in the video')
H
hypox64 已提交
43 44 45
        self.parser.add_argument('--ex_mult', type=str, default='auto',help='mosaic area expansion')
        
        #StyleTransfer
46
        self.parser.add_argument('--preprocess', type=str, default='resize', help='resize and cropping of images at load time [ resize | resize_scale_width | edges | gray] or resize,edges(use comma to split)')
H
HypoX64 已提交
47
        self.parser.add_argument('--edges', action='store_true', help='if specified, use edges to generate pictures,(input_nc = 1)')  
H
hypox64 已提交
48
        self.parser.add_argument('--canny', type=int, default=150,help='threshold of canny')
H
HypoX64 已提交
49
        self.parser.add_argument('--only_edges', action='store_true', help='if specified, output media will be edges')
H
hypox64 已提交
50

H
hypox64 已提交
51 52 53
        self.initialized = True


H
HypoX64 已提交
54
    def getparse(self, test_flag = False):
H
hypox64 已提交
55 56 57
        if not self.initialized:
            self.initialize()
        self.opt = self.parser.parse_args()
58
        
H
hypox64 已提交
59
        model_name = os.path.basename(self.opt.model_path)
60
        self.opt.temp_dir = os.path.join(self.opt.temp_dir, 'DeepMosaics_temp')
H
BVDNet  
hypox64 已提交
61 62 63 64 65 66 67 68 69
           
        
        if self.opt.use_gpu != '-1':
            os.environ["CUDA_VISIBLE_DEVICES"] = str(self.opt.use_gpu)
            import torch
            if not torch.cuda.is_available():
                self.opt.use_gpu = '-1'
        # else:
        #     self.opt.use_gpu = '-1'
H
hypox64 已提交
70

H
HypoX64 已提交
71 72 73 74
        if test_flag:
            if not os.path.exists(self.opt.media_path):
                print('Error: Bad media path!')
                input('Please press any key to exit.\n')
75
                sys.exit(0)
76

H
hypox64 已提交
77
        if self.opt.mode == 'auto':
78
            if 'clean' in model_name or self.opt.traditional:
H
hypox64 已提交
79
                self.opt.mode = 'clean'
80 81
            elif 'add' in model_name:
                self.opt.mode = 'add'
H
hypox64 已提交
82
            elif 'style' in model_name or 'edges' in model_name:
H
hypox64 已提交
83
                self.opt.mode = 'style'
H
hypox64 已提交
84
            else:
H
HypoX64 已提交
85 86
                print('Please input running model!')
                input('Please press any key to exit.\n')
87
                sys.exit(0)
H
hypox64 已提交
88

89 90 91 92 93 94
        if self.opt.output_size == 0 and self.opt.mode == 'style':
            self.opt.output_size = 512

        if 'edges' in model_name or 'edges' in self.opt.preprocess:
            self.opt.edges = True

H
hypox64 已提交
95
        if self.opt.netG == 'auto' and self.opt.mode =='clean':
H
hypox64 已提交
96
            if 'unet_128' in model_name:
H
hypox64 已提交
97
                self.opt.netG = 'unet_128'
H
hypox64 已提交
98
            elif 'resnet_9blocks' in model_name:
H
hypox64 已提交
99
                self.opt.netG = 'resnet_9blocks'
H
HypoX64 已提交
100
            elif 'HD' in model_name and 'video' not in model_name:
H
hypox64 已提交
101
                self.opt.netG = 'HD'
H
hypox64 已提交
102
            elif 'video' in model_name:
H
hypox64 已提交
103
                self.opt.netG = 'video'
H
hypox64 已提交
104 105
            else:
                print('Type of Generator error!')
H
HypoX64 已提交
106
                input('Please press any key to exit.\n')
107
                sys.exit(0)
H
hypox64 已提交
108

H
hypox64 已提交
109 110
        if self.opt.ex_mult == 'auto':
            if 'face' in model_name:
111
                self.opt.ex_mult = 1.1
H
hypox64 已提交
112 113 114 115
            else:
                self.opt.ex_mult = 1.5
        else:
            self.opt.ex_mult = float(self.opt.ex_mult)
H
hypox64 已提交
116

117 118 119
        if self.opt.mosaic_position_model_path == 'auto':
            _path = os.path.join(os.path.split(self.opt.model_path)[0],'mosaic_position.pth')
            self.opt.mosaic_position_model_path = _path
H
hypox64 已提交
120
            # print(self.opt.mosaic_position_model_path)
121

H
hypox64 已提交
122
        return self.opt