Re: [x265] [PATCH] Add VMAF suppport to report per frame and aggregate VMAF score

2018-04-23 Thread Mario Rohkrämer
o Chicago, IL +1 (773) 747-7546 www.TheLayeredMix.co.nf-Website hosted on Norfolk Island -Original Message- From: Mario *LigH* Rohkrämer Sent: Monday, April 23, 2018 7:55 AM To: Development for x265 Subject: Re: [x265] [PATCH] Add VMAF suppport to report per frame and aggregate VMAF score

Re: [x265] [PATCH] Add VMAF suppport to report per frame and aggregate VMAF score

2018-04-23 Thread Indumathi Ravichandran
> Glenn S. Odagawa & Quilo > Chicago, IL > +1 (773) 747-7546 > www.TheLayeredMix.co.nf-Website hosted on Norfolk Island > > -Original Message- From: Mario *LigH* Rohkrämer > Sent: Monday, April 23, 2018 7:55 AM > To: Development for x265 > Subject: Re: [x265] [PA

Re: [x265] [PATCH] Add VMAF suppport to report per frame and aggregate VMAF score

2018-04-23 Thread Glenn Odagawa
VMAF suppport to report per frame and aggregate VMAF score Mario Rohkrämer schrieb am 12.04.2018 um 18:25: Am 12.04.2018, 13:13 Uhr, schrieb <induma...@multicorewareinc.com>: +.. Note:: + +When setting ENABLE_LIBVMAF cmake option to ON, it is recommended to +also set ENABLE_SHA

Re: [x265] [PATCH] Add VMAF suppport to report per frame and aggregate VMAF score

2018-04-23 Thread Mario *LigH* Rohkrämer
Mario Rohkrämer schrieb am 12.04.2018 um 18:25: Am 12.04.2018, 13:13 Uhr, schrieb : +.. Note:: + +    When setting ENABLE_LIBVMAF cmake option to ON, it is recommended to +    also set ENABLE_SHARED to OFF to prevent build problems. +    We only need the static

Re: [x265] [PATCH] Add VMAF suppport to report per frame and aggregate VMAF score

2018-04-17 Thread Indumathi Ravichandran
On Tue, Apr 17, 2018 at 12:46 PM, Deepthi Nandakumar < deepthipnandaku...@gmail.com> wrote: > Thanks. My question is, why not calculate the full VMAF metrics at the end > of encode, and write in the per-frame VMAF metric into your CSV file (if > the file is incrementally written, you might need

Re: [x265] [PATCH] Add VMAF suppport to report per frame and aggregate VMAF score

2018-04-17 Thread Deepthi Nandakumar
Thanks. My question is, why not calculate the full VMAF metrics at the end of encode, and write in the per-frame VMAF metric into your CSV file (if the file is incrementally written, you might need to do some weird pointer math, moving to the end of each line etc). Isnt that a better solution

Re: [x265] [PATCH] Add VMAF suppport to report per frame and aggregate VMAF score

2018-04-17 Thread Indumathi Ravichandran
On Tue, Apr 17, 2018 at 6:44 AM, Deepthi Nandakumar < deepthipnandaku...@gmail.com> wrote: > I cannot find the implementation of compute_vmaf in the patch attached. > compute_vmaf is an API function exposed by libvmaf and we have integrated libvmaf into libx265. > I'm not sure why the libvmaf

Re: [x265] [PATCH] Add VMAF suppport to report per frame and aggregate VMAF score

2018-04-16 Thread Deepthi Nandakumar
I cannot find the implementation of compute_vmaf in the patch attached. I'm not sure why the libvmaf interface for a single frame doesnt include the motion component? Can you point me to this code and vmaf API description? On Mon, Apr 16, 2018 at 5:26 PM, Aruna Matheswaran <

Re: [x265] [PATCH] Add VMAF suppport to report per frame and aggregate VMAF score

2018-04-16 Thread Aruna Matheswaran
On Mon, Apr 16, 2018 at 4:00 PM, Ashok Kumar Mishra < as...@multicorewareinc.com> wrote: > > > On Mon, Apr 16, 2018 at 3:33 PM, Deepthi Nandakumar < > deepthipnandaku...@gmail.com> wrote: > >> Not sure I understand - are you saying you write the frame level VMAF >> score into the CSV file, and

Re: [x265] [PATCH] Add VMAF suppport to report per frame and aggregate VMAF score

2018-04-16 Thread Ashok Kumar Mishra
On Mon, Apr 16, 2018 at 3:33 PM, Deepthi Nandakumar < deepthipnandaku...@gmail.com> wrote: > Not sure I understand - are you saying you write the frame level VMAF > score into the CSV file, and then read it back again to compute the mean? > Yes, now I sense something wrong in our code. If we are

Re: [x265] [PATCH] Add VMAF suppport to report per frame and aggregate VMAF score

2018-04-16 Thread Deepthi Nandakumar
Not sure I understand - are you saying you write the frame level VMAF score into the CSV file, and then read it back again to compute the mean? On Mon, Apr 16, 2018 at 3:24 PM, Ashok Kumar Mishra < as...@multicorewareinc.com> wrote: > > > On Mon, Apr 16, 2018 at 2:42 PM, Deepthi Nandakumar < >

Re: [x265] [PATCH] Add VMAF suppport to report per frame and aggregate VMAF score

2018-04-16 Thread Ashok Kumar Mishra
On Mon, Apr 16, 2018 at 2:42 PM, Deepthi Nandakumar < deepthipnandaku...@gmail.com> wrote: > Why are file reads required to compute vmaf? The recon and original yuv > sources are available. > File reads are required when you compute vmaf score of the complete file, and it is not required for

Re: [x265] [PATCH] Add VMAF suppport to report per frame and aggregate VMAF score

2018-04-16 Thread Deepthi Nandakumar
Why are file reads required to compute vmaf? The recon and original yuv sources are available. Why floating point reads? On Thu, Apr 12, 2018 at 5:31 PM, Ashok Kumar Mishra < as...@multicorewareinc.com> wrote: > > > On Thu, Apr 12, 2018 at 4:43 PM, wrote: > >> #

Re: [x265] [PATCH] Add VMAF suppport to report per frame and aggregate VMAF score

2018-04-12 Thread Mario Rohkrämer
Am 12.04.2018, 13:13 Uhr, schrieb : +.. Note:: + +When setting ENABLE_LIBVMAF cmake option to ON, it is recommended to +also set ENABLE_SHARED to OFF to prevent build problems. +We only need the static library from these builds. + +Binaries build

Re: [x265] [PATCH] Add VMAF suppport to report per frame and aggregate VMAF score

2018-04-12 Thread Ashok Kumar Mishra
On Thu, Apr 12, 2018 at 4:43 PM, wrote: > # HG changeset patch > # User IndumathiR > # Date 1518528290 -19800 > # Tue Feb 13 18:54:50 2018 +0530 > # Node ID 27e3b161cd8b59ad1cae67a96e11e3e0506d5017 > # Parent

[x265] [PATCH] Add VMAF suppport to report per frame and aggregate VMAF score

2018-04-12 Thread indumathi
# HG changeset patch # User IndumathiR # Date 1518528290 -19800 # Tue Feb 13 18:54:50 2018 +0530 # Node ID ca4a690f5036951da78441a4c70577a5977b1e0e # Parent 593e63cda903370af926711c0ba05ce37d045c90 Add VMAF suppport to report per frame and aggregate VMAF score