rPPG icon indicating copy to clipboard operation
rPPG copied to clipboard

After run "python3 run.py --source=0 --frame-rate=25", The window flashed 0.1s

Open binruable opened this issue 4 years ago • 2 comments

image

binruable avatar Jun 08 '20 08:06 binruable

Same issue with this output

python3 run.py --source=0 --frame-rate=30
init
time 3.063958168029785

quickswitch123 avatar Dec 22 '20 02:12 quickswitch123

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.

Xxfore avatar Apr 09 '21 09:04 Xxfore