-
-
Notifications
You must be signed in to change notification settings - Fork 23
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
Film grain/noise estimator #4
Comments
If this is added, another option should be added for inputting a manually de-grained input for encoding along with the original for grain estimation. |
Is this what --fga in VVenC does? https://github.com/fraunhoferhhi/vvenc/commits/master/
And if so, could the open-source code be re-used for SVT-AV1 - or is this part of the VVC code patented, too? +1 for having such an estimator for a AV1 encoding chain. From all guides I've seen, the amount of denoising and respective noise generation is simply trial and error. The optimal solution would be to enable automatic photon noise table generation (or at least selection). BlueSwordM's code 'photon_noise_table' is currently outside SVT-AV1. |
VVC's specific implementation is patented, but under a BSD license. More importantly, it's vastly different from AV1's method, there's already a perfectly good AV1 implementation, and the glue code to combine it all into a single option that denoises + adds grain tags is very particular to the way the reference encoder is organized; SVT encoders are set up VERY differently. vvenc's implementation would not be helpful. It really just needs someone motivated enough to link together the right bits in the right spots throughout the codebase, without crowbarring it in too messily. I haven't looked into it enough to know how complex a project that would be. |
Well Julio, we could perhaps port the aomenc-av1 grain synthesis strength estimator. |
Uh, iirc the libaom grain synthesis stuff is underdeveloped and is kind of just a proof of concept. |
SVT-AV1 currently doesn't have a film grain/noise estimator in its code, so having one will help unlock working on these features:
--film-grain auto
settingThe text was updated successfully, but these errors were encountered: