Skip to content

Commit e434247

Browse files
authored
Feature/update doc (#361)
* Add vmaf logo; add link to survey. * Change logo size. * Change logo size. * Update logo size. * Update CHANGELOG; bump up version to 1.3.15.
1 parent dd3a7f9 commit e434247

File tree

6 files changed

+24
-4
lines changed

6 files changed

+24
-4
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Change Log
22

3+
## (9/8/2019) [1.3.15]
4+
5+
**Fixed bugs:**
6+
- Fix a case when CPU cores > 128(MAX_NUM_THREADS) / 3 (#319).
7+
- Avoid dis-filtering ref when not needed, fix return type (#325).
8+
- Update name of file for failed dis_path fopen (#334).
9+
- A few compilation fixes (warnings and errors) (#326).
10+
- Bump up g++ version to 9 for travis (#352).
11+
- Use stat struct instead of ftell to retrieve the file size (#350).
12+
13+
**New features:**
14+
- Write aggregate scores, exec FPS to json output.
15+
- Add support for python3 (#332).
16+
- Print progress in vmafossexec (#337).
17+
- Add VMAF logo.
18+
- Add link to report VMAF bad cases.
19+
320
## (3/1/2019) [1.3.14]
421

522
**Fixed bugs:**

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
VMAF - Video Multi-Method Assessment Fusion
22
===================
3+
34
[![Build Status](https://travis-ci.org/Netflix/vmaf.svg?branch=master)](https://travis-ci.org/Netflix/vmaf) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/68i57b8ssasttngg?svg=true)](https://ci.appveyor.com/project/li-zhi/vmaf)
45

56
VMAF is a perceptual video quality assessment algorithm developed by Netflix. VMAF Development Kit (VDK) is a software package that contains the VMAF algorithm implementation, as well as a set of tools that allows a user to train and test a custom VMAF model. Read [this](https://medium.com/netflix-techblog/toward-a-practical-perceptual-video-quality-metric-653f208b9652) techblog post for an overview, or [this](https://medium.com/netflix-techblog/vmaf-the-journey-continues-44b51ee9ed12) post for the latest updates and tips for best practices.
67

8+
![vmaf logo](resource/images/vmaf_logo.jpg)
9+
710
## News
811

12+
- (9/8/19) Added a [link to report VMAF bad cases](https://docs.google.com/forms/d/e/1FAIpQLSdJntNoBuucMSiYoK3SDWoY1QN0yiFAi5LyEXuOyXEWJbQBtQ/viewform?usp=sf_link). Over time, we have received feedbacks on when VMAF's prediction does not reflect the expected perceptual quality of videos, either they are corner cases where VMAF fails to cover, or new application scenarios which VMAF was not initially intended for. In response to that, we have created the Google form to allow users to upload their video samples and describe the scenarios. The bad cases are valuable for improving future versions of VMAF. Users can opt in or out for sharing their sample videos publicly.
913
- (1/31/19) Optimized C code for speed. Running in multithreading mode, `vmafossexec` achieves ~40% run time reduction compared to the previous version.
1014
- (11/19/18) Added a BD-rate calculator implementation. See more details [here](resource/doc/VMAF_Python_library.md#bd-rate-calculator).
1115
- (10/25/18) We have published our [second techblog on VMAF](https://medium.com/netflix-techblog/vmaf-the-journey-continues-44b51ee9ed12), with recommendations on best practices.
1216
- (9/13/18) [SUREAL](https://github.com/Netflix/sureal) is no longer a submodule to VMAF.
13-
- (6/19/18) Each VMAF prediction score now comes with a 95% [confidence interval (CI)](resource/doc/conf_interval.md), which quantifies the level of confidence that the prediction lies within the interval.
1417

1518
## Frequently Asked Questions
1619

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
VMAF Development Kit (VDK) Version 1.3.14
1+
VMAF Development Kit (VDK) Version 1.3.15
22
VMAF Version 0.6.1

resource/images/vmaf_logo.jpg

26.1 KB
Loading

wrapper/libvmaf.pc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ includedir=/usr/local/include
55

66
Name: libvmaf
77
Description: Netflix's VMAF library
8-
Version: 1.3.14
8+
Version: 1.3.15
99
URL: https://github.com/Netflix/vmaf
1010
Requires:
1111
Requires.private:

wrapper/src/vmaf.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -948,7 +948,7 @@ void BootstrapVmafQualityRunner::_set_prediction_result(
948948

949949
}
950950

951-
static const char VMAFOSS_DOC_VERSION[] = "1.3.14";
951+
static const char VMAFOSS_DOC_VERSION[] = "1.3.15";
952952

953953
double RunVmaf(const char* fmt, int width, int height,
954954
int (*read_frame)(float *ref_data, float *main_data, float *temp_data, int stride, void *user_data),

0 commit comments

Comments
 (0)