ソースを参照

Update test_options.py

NNNNAI 4 年 前
コミット
82038b7b2a
1 ファイル変更2 行追加0 行削除
  1. 2 0
      options/test_options.py

+ 2 - 0
options/test_options.py

@@ -18,10 +18,12 @@ class TestOptions(BaseOptions):
         self.parser.add_argument("--pic_a_path", type=str, default='./crop_224/gdg.jpg', help="Person who provides identity information")
         self.parser.add_argument("--pic_b_path", type=str, default='./crop_224/zrf.jpg', help="Person who provides information other than their identity")
         self.parser.add_argument("--pic_specific_path", type=str, default='./crop_224/zrf.jpg', help="The specific person to be swapped")
+        self.parser.add_argument("--mutilsepcific_dir", type=str, default='./demo_file/mutilspecific', help="Dir for mutil specific")
         self.parser.add_argument("--video_path", type=str, default='./demo_file/mutil_people_1080p.mp4', help="path for the video to swap")
         self.parser.add_argument("--temp_path", type=str, default='./temp_results', help="path to save temporarily images")
         self.parser.add_argument("--output_path", type=str, default='./output/', help="results path")
         self.parser.add_argument('--id_thres', type=float, default=0.03, help='how many test images to run')
         self.parser.add_argument('--no_simswaplogo', action='store_true', help='Remove the watermark')
+        
 
         self.isTrain = False