Thread: Descale
View Single Post
Old 18th May 2017, 13:01   #14  |  Link
jackoneill
unsigned int
 
jackoneill's Avatar
 
Join Date: Oct 2012
Location: 🇪🇺
Posts: 760
Quote:
Originally Posted by ChaosKing View Post
Does it make any sense to Descale in 16bit since the upscale was done in 8bit?

Code:
import descale as ds
clip = mvf.Depth(clip, 16)
clip = ds.Debilinear(clip, 1600,900)
It does not. You now have two bit depth conversions. First from 8 to 16, then from 16 to float. If you call ds.Debilinear directly, you get a single conversion, from 8 to float.
__________________
Buy me a "coffee" and/or hire me to write code!
jackoneill is offline   Reply With Quote