NeuralFalcon commited on
Commit
01a7c4e
·
verified ·
1 Parent(s): 0ec3100

Create obs.py

Browse files
Files changed (1) hide show
  1. obs.py +10 -0
obs.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ from video_process import add_mask
2
+ mask_names=["Front Man Mask", "Guards Mask", "Red Mask", "Blue Mask"]
3
+ camera_index = 0
4
+ add_mask(camera_index,mask_name=mask_names[0],mask_up=10, mask_down=10,display=True)
5
+
6
+ # mask_up mean how much to move the mask up (forehead side)
7
+ # mask_down mean how much to move the mask down (chin side)
8
+
9
+ # Then use OBS to capture the hidden face window. You can use it
10
+ # for live streaming or recording video without showing your face.