level 3
性爱擼
楼主
是这样写的内容
import vapoursynth as vs
core = vs.get_core()
clip = core.lsmas.LWLibavSource(r‘1.mkv’)
#clip=core.std.LoadPlugin(r'F:\VapourSynth\plugins64\Waifu2x-caffe.dll')
clip = core.caffe.Waifu2x(clip, noise=1, scale=2, block_w=128, block_h=128, model=3, cudnn=True, processor=0, tta=False)#预设
clip.set_output()
把官网上下的cudnn64_6.dll放到VapourSynth\plugins64
然后editor说
No attribute with the name caffe exists. Did you mistype a plugin namespace?
caffe+models+mawen大的合集(caffe部分)的dll都放在自动加载目录了,就是F:\VapourSynth\plugins64,应该没问题
cudnn的位置放的不对吗??(并没找到具体放哪个文件夹,就塞vs里面了)
把LoadPlugin那句话去掉#以后
A DLL dependency is probably missing.
缺一个dll
使用的mkv是常见的264 8bit
问一下到底是哪里错了
caffe的dll是从mawen大的合集里面扒的,caffe文件夹里面的都加了
2017年07月08日 04点07分
1
import vapoursynth as vs
core = vs.get_core()
clip = core.lsmas.LWLibavSource(r‘1.mkv’)
#clip=core.std.LoadPlugin(r'F:\VapourSynth\plugins64\Waifu2x-caffe.dll')
clip = core.caffe.Waifu2x(clip, noise=1, scale=2, block_w=128, block_h=128, model=3, cudnn=True, processor=0, tta=False)#预设
clip.set_output()
把官网上下的cudnn64_6.dll放到VapourSynth\plugins64
然后editor说
No attribute with the name caffe exists. Did you mistype a plugin namespace?
cudnn的位置放的不对吗??(并没找到具体放哪个文件夹,就塞vs里面了)
把LoadPlugin那句话去掉#以后
A DLL dependency is probably missing.
使用的mkv是常见的264 8bit
问一下到底是哪里错了
caffe的dll是从mawen大的合集里面扒的,caffe文件夹里面的都加了