-
Notifications
You must be signed in to change notification settings - Fork 10
E_ITP metric #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
E_ITP metric #1
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have updated video_source classes since you wrote that class, and now there is now a better way to implement a conversion to ITP. Please see the comments below.
pycvvdp/video_source.py
Outdated
LMS = frame*self.color_to_L[0] + frame*self.color_to_L[1] + frame*self.color_to_L[2] | ||
|
||
# Apply PQ curve | ||
LMS_p = self.dm_photometry.forward( LMS ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The display model must be applied in the RGB colour space (of the display). Not LMS.
How is the ∆E-ITP metric used in cvvdp? |
It is not used. It was a separate sub-project and we use it as one of the reference metrics for the benchmarks. |
Added e_itp file similar to pu_psnr
Added RGB to ITP subclasses in video_source class