silvia-odwyer / photon

⚡ Rust/WebAssembly image processing library
https://silvia-odwyer.github.io/photon
Apache License 2.0
2.58k stars 146 forks source link

Super resolution AI #67

Open pratik9722 opened 3 years ago

pratik9722 commented 3 years ago

recommendation

if we can give a low-resolution image e.g 640 x 360 then your script will convert it into 1920 x 1080 then it's awesome then if we can combine https://github.com/ffmpegwasm/ffmpeg.wasm then we can make the HD video out of it

jhodges10 commented 3 years ago

FFMPEG can also upscale on its own using video filters. Photon's not really doing anything super special for upscaling, and even if it was, there are serious differences in upscaling a single frame vs upscaling video - temporal coherence being the most important one!

silvia-odwyer commented 3 years ago

@jhodges10 That's a good point, Jeff, I'd recommend FFMPEG for upscaling, mainly because it can achieve @pratik9722's goal of both upscaling and turning it into a video, all within a single library. @pratik9722 What are your thoughts on this, does that solve your issue? 😄