rPPG
rPPG copied to clipboard
After run "python3 run.py --source=0 --frame-rate=25", The window flashed 0.1s
Same issue with this output
python3 run.py --source=0 --frame-rate=30
init
time 3.063958168029785
Same issue with this output
python3 run.py --source=0 --frame-rate=30 init time 3.063958168029785
Because the type of input parameter "source" is string not int So that cv2.VideoCapture always return false. You can specify parameter "source" datatype as int in run.py or use hardcode like cv2.VideoCapture(0) instead.