Преглед изворни кода

added start .bat file, fixed divide by zero error

w.mueller пре 3 година
родитељ
комит
eace51f63c
3 измењених фајлова са 19 додато и 0 уклоњено
  1. 5 0
      .gitignore
  2. 2 0
      inference_webcam_ts_compositing.py
  3. 12 0
      runTS.bat

+ 5 - 0
.gitignore

@@ -0,0 +1,5 @@
+/model
+/images
+/dataset
+__pycache__
+dummy.py

+ 2 - 0
inference_webcam_ts_compositing.py

@@ -95,6 +95,8 @@ with torch.no_grad():
               cam.darker()
             elif key == 'q':
                 exit()
+            #prevent Division by Zero error
+            time.sleep(1/60)
 
         if args.background_image == "":
           #green screen

+ 12 - 0
runTS.bat

@@ -0,0 +1,12 @@
+python inference_webcam_ts_compositing.py ^
+  --model-type mattingrefine ^
+  --model-backbone mobilenetv2 ^
+  --model-backbone-scale 0.5 ^
+  --model-checkpoint model/TorchScript/torchscript_mobilenetv2_fp32.pth ^
+  --model-refine-mode thresholding ^
+  --model-refine-threshold 0.75 ^
+  --model-refine-sample-pixels 20000 ^
+  --resolution 640 360 ^
+  --device-id 0 
+  
+  pause