View Single Post
Old 14th May 2018, 20:46   #229  |  Link
SuperLumberjack
French Registered User
 
SuperLumberjack's Avatar
 
Join Date: Aug 2016
Location: France
Posts: 333
Here are some screenshots from Super Nes games with 4:3 aspect ratio (in reality 585:448) upscaled to 2160p :

(source resolution : 256x224 60 fps)


Killer Instinct


https://media.joomeo.com/original/5b034d618e6eb.png

Killer Instinct


https://media.joomeo.com/original/5b034e0812fc3.png

Donkey Kong Country


https://media.joomeo.com/original/5b034e4cdb57d.png

Donkey Kong Country 3


https://media.joomeo.com/original/5b034e9ada8a6.png


Quote:
AviSource()
Spline16Resize(512, 448)
nnedi3_rpow2(rfactor=2, nsize=0, nns=2, qual=1, etype=0, pscrn=2, threads=0, opt=0, fapprox=0)

GaussResize2(5640, 4320, px=50, py=50)
BicubicResize(2820, 2160)
return Last

##################################
function GaussResize2(clip C, int target_width, int target_height,
\ float "src_left", float "src_top", float "src_width", float "src_height",
\ float "px", float "py")
{
px = Default(px, 30.0)
py = Default(py, px)
R = C.GaussResize(target_width, C.Height,
\ src_left, 0, src_width, 0, px)
\ .GaussResize(target_width, target_height,
\ 0, src_top, 0, src_height, py)
return R
}

Here are some screenshots from Super Nes games with 8:7 aspect ratio upscaled to 2160p :


Mr. Nutz


https://media.joomeo.com/original/5b034eef0741a.png

Mr. Nutz


https://media.joomeo.com/original/5b034f6680f75.png

Super Mario World


https://media.joomeo.com/original/5b034fa8c23cf.png

Super Mario Bros. 3


https://media.joomeo.com/original/5b034fe7462b5.png


Quote:
AviSource()
Spline16Resize(512, 448)
nnedi3_rpow2(rfactor=2, nsize=0, nns=2, qual=1, etype=0, pscrn=2, threads=0, opt=0, fapprox=0)

GaussResize2(4936, 4320, px=50, py=50)
BicubicResize(2468, 2160)
return Last

##################################
function GaussResize2(clip C, int target_width, int target_height,
\ float "src_left", float "src_top", float "src_width", float "src_height",
\ float "px", float "py")
{
px = Default(px, 30.0)
py = Default(py, px)
R = C.GaussResize(target_width, C.Height,
\ src_left, 0, src_width, 0, px)
\ .GaussResize(target_width, target_height,
\ 0, src_top, 0, src_height, py)
return R
}

What do you think ?

Last edited by SuperLumberjack; 22nd May 2018 at 00:03. Reason: screenshots and scripts updated
SuperLumberjack is offline   Reply With Quote