Real-ESRGAN
Real-ESRGAN copied to clipboard
node js version ?
can you make the nodejs version
you can use it in node with child_process
使用nodejs的child_process调用这个release版本的exe, for example
var spawn = require('child_process').spawn;
spawn(esrganPath,[
'-i',`inputFilePath`,
'-o',`outputFilePath`,
'-n',`modelName`
'...','...'//more args depend on your own project
]);