mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-25 10:40:51 +00:00
fix vmaf plot
This commit is contained in:
parent
cdcce27981
commit
0ff038dd4c
1 changed files with 4 additions and 4 deletions
|
@ -157,10 +157,10 @@ def plot_vmaf_score_file(scores: Path, plot_path: Path):
|
|||
Read vmaf json and plot VMAF values for each frame
|
||||
"""
|
||||
|
||||
perc_1 = read_weighted_vmaf(scores, 1)
|
||||
perc_25 = read_weighted_vmaf(scores, 25)
|
||||
perc_75 = read_weighted_vmaf(scores, 75)
|
||||
mean = read_weighted_vmaf(scores, 50)
|
||||
perc_1 = read_weighted_vmaf(scores, 0.01)
|
||||
perc_25 = read_weighted_vmaf(scores, 0.25)
|
||||
perc_75 = read_weighted_vmaf(scores, 0.75)
|
||||
mean = read_weighted_vmaf(scores, 0.50)
|
||||
|
||||
with open(scores) as f:
|
||||
file = json.load(f)
|
||||
|
|
Loading…
Reference in a new issue