summarylogtreecommitdiffstats
path: root/fix.patch
blob: ee41d9a30910664daaffd98dc48d15574954ffe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
diff --git a/main.py b/main.py
index 65e2bf2..fd25095 100644
--- a/main.py
+++ b/main.py
@@ -189,7 +189,7 @@ def main(args):
     if not os.path.isfile(args.input):
         print("Error : {} file doesn't exist".format(
             args.input), file=sys.stderr)
-        exit(1)
+        sys.exit(1)
     start = time.time()
 
     gpu_ids = args.gpu
@@ -236,7 +236,7 @@ def main(args):
         if image.shape != (512, 512, 3):
             print("Error : image is not 512 x 512, got shape: {}".format(
                 image.shape), file=sys.stderr)
-            exit(1)
+            sys.exit(1)
 
         # Process
         if args.n_runs is None or args.n_runs == 1:
diff --git a/run.py b/run.py
index 9f09b78..3c61bb6 100644
--- a/run.py
+++ b/run.py
@@ -155,30 +155,24 @@ def process(cv_img, gpu_ids, prefs):
                 # Save Data
                 if phase == "correct_to_mask":
                     mask = cv2.cvtColor(im, cv2.COLOR_RGB2BGR)
-                    cv2.imwrite("mask.png", mask)
 
                 elif phase == "maskref_to_maskdet":
                     maskdet = cv2.cvtColor(im, cv2.COLOR_RGB2BGR)
-                    cv2.imwrite("maskdet.png", maskdet)
 
                 elif phase == "maskfin_to_nude":
                     nude = cv2.cvtColor(im, cv2.COLOR_RGB2BGR)
-                    cv2.imwrite("nude.png", nude)
 
         # Correcting:
         elif phase == "dress_to_correct":
             correct = create_correct(dress)
-            cv2.imwrite("correct.png", correct)
 
         # mask_ref phase (opencv)
         elif phase == "mask_to_maskref":
             maskref = create_maskref(mask, correct)
-            cv2.imwrite("maskref.png", maskref)
 
         # mask_fin phase (opencv)
         elif phase == "maskdet_to_maskfin":
             maskfin = create_maskfin(maskref, maskdet, prefs)
-            cv2.imwrite("maskfin.png", maskfin)
 
         # nude_to_watermark phase (opencv)
         elif phase == "nude_to_watermark":
diff --git a/scripts/setup.py b/scripts/setup.py
index bf10fb0..d07d4ad 100644
--- a/scripts/setup.py
+++ b/scripts/setup.py
@@ -1,6 +1,7 @@
 import argparse
 import fileinput
 import importlib
+from importlib import util
 import logging
 import os
 import subprocess