You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that the code in #13 can't work now, is there any other way to get bpm from a random video?
Does the run_on_video function in readme.md take effect in a random video?
from pyVHR.signals.video import Video
Traceback (most recent call last):
File "<stdin>", line 1, in
ModuleNotFoundError: No module named 'pyVHR.signals'
The text was updated successfully, but these errors were encountered:
#### TEST holistic approachfrompyVHR.analysis.pipelineimportPipeline# paramsvideoFileName="video.avi"# your video pathroi_approach='holistic'# 'holistic' or 'patches'bpm_est='median'# BPM final estimate, if patches choose 'medians' or 'clustering'method='cpu_CHROM'# one of the methods implemented in pyVHRpipe=Pipeline() # object to execute the pipeline# runbvps, timesES, bpmES=pipe.run_on_video(videoFileName,
winsize=8,
roi_method='convexhull',
roi_approach=roi_approach,
method=method,
estimate=bpm_est,
patch_size=40,
RGB_LOW_HIGH_TH=(5,230),
Skin_LOW_HIGH_TH=(5,230),
pre_filt=True,
post_filt=True,
cuda=False,
verb=True
)
It seems that the code in #13 can't work now, is there any other way to get bpm from a random video?
Does the run_on_video function in readme.md take effect in a random video?
The text was updated successfully, but these errors were encountered: