抱歉,
因為不知道這效果的名稱叫做什麼,只好這樣訂標題
原圖
http://i.imgur.com/hHMUImv.jpg
Avisynth腳本
a = "picture.jpg"
video = LWLibavVideoSource(a,format="YUV420P8",threads=1)
output = PointResize(video,900+200,1440+200,-100,-100,900+200,1440+200)
return output
http://i.imgur.com/3xXo30s.jpg
VapourSynth腳本
a = "picture.jpg"
a = core.lsmas.LWLibavSource(a,format="yuv420p10")
resize = core.resize.Point(a, width=900+200, height=1440+200, src_left=-100,
src_top=-100, src_width=900+200, src_height=1440+200)
resize.set_output()
http://i.imgur.com/7IqcGQN.jpg
想要的效果是,Avisynth輸出那樣重複邊緣像素,
結果在VapourSynth卻是鏡像,
不知道VapourSynth有無辦法輸出重複邊緣像素的效果嗎?
或者針對多出來的部分模糊處理也可以,
反正就是要邊緣是模糊的。
在此先感謝各位大大了m(_ _)m