This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

ProPainter Vapoursynth filter
#99
Using:
# Imports
import vapoursynth as vs
# getting Vapoursynth core
import ctypes
import sys
import os
core = vs.core
# Import scripts folder
scriptPath = 'F:/Hybrid/64bit/vsscripts'
sys.path.insert(0, os.path.abspath(scriptPath))
# Loading Support Files
Dllref = ctypes.windll.LoadLibrary("F:/Hybrid/64bit/vsfilters/Support/libfftw3f-3.dll")
# loading plugins
core.std.LoadPlugin(path="F:/Hybrid/64bit/vsfilters/GrainFilter/RemoveGrain/RemoveGrainVS.dll")
core.std.LoadPlugin(path="F:/Hybrid/64bit/vsfilters/GrainFilter/AddGrain/AddGrain.dll")
core.std.LoadPlugin(path="F:/Hybrid/64bit/vsfilters/DenoiseFilter/DFTTest/DFTTest.dll")
core.std.LoadPlugin(path="F:/Hybrid/64bit/vsfilters/DenoiseFilter/NEO_FFT3DFilter/neo-fft3d.dll")
core.std.LoadPlugin(path="F:/Hybrid/64bit/vsfilters/Support/EEDI3m_opencl.dll")# vsQTGMC
core.std.LoadPlugin(path="F:/Hybrid/64bit/vsfilters/ResizeFilter/nnedi3/NNEDI3CL.dll")
core.std.LoadPlugin(path="F:/Hybrid/64bit/vsfilters/Support/libmvtools.dll")
core.std.LoadPlugin(path="F:/Hybrid/64bit/vsfilters/Support/scenechange.dll")
core.std.LoadPlugin(path="F:/Hybrid/64bit/vsfilters/Support/fmtconv.dll")
core.std.LoadPlugin(path="F:/Hybrid/64bit/vsfilters/MiscFilter/MiscFilters/MiscFilters.dll")
core.std.LoadPlugin(path="F:/Hybrid/64bit/vsfilters/DeinterlaceFilter/Bwdif/Bwdif.dll")
core.std.LoadPlugin(path="F:/Hybrid/64bit/vsfilters/SourceFilter/DGDecNV/DGDecodeNV.dll")
# Import scripts
import havsfunc
import validate
# Source: 'G:\TestClips&Co\files\MPEG-2\Mächte des Wahnsinns.m2v'
# Current color space: YUV420P8, bit depth: 8, resolution: 720x576, frame rate: 25fps, scanorder: top field first, yuv luminance scale: limited, matrix: 470bg, transfer: bt.470 system b/g, primaries: bt.601 pal
# Loading G:\TestClips&Co\files\MPEG-2\Mächte des Wahnsinns.m2v using DGSource
clip = core.dgdecodenv.DGSource("J:/tmp/m2v_10f10703815915d676a763d34caf8ab1_853323747.dgi",fieldop=0)# 25 fps, scanorder: top field first
frame = clip.get_frame(0)
# Setting detected color matrix (470bg).
clip = core.std.SetFrameProps(clip=clip, _Matrix=5)
# setting color transfer (601), if it is not set.
if validate.transferIsInvalid(clip):
  clip = core.std.SetFrameProps(clip=clip, _Transfer=5)
# setting color primaries info (to 470), if it is not set.
if validate.primariesIsInvalid(clip):
  clip = core.std.SetFrameProps(clip=clip, _Primaries=5)
# setting color range to TV (limited) range.
clip = core.std.SetFrameProps(clip=clip, _ColorRange=1)
# making sure frame rate is set to 25fps
clip = core.std.AssumeFPS(clip=clip, fpsnum=25, fpsden=1)
# making sure the detected scan type is set (detected: top field first)
clip = core.std.SetFrameProps(clip=clip, _FieldBased=2) # tff
original = clip
# Deinterlacing using QTGMC
clip = havsfunc.QTGMC(Input=clip, Preset="Fast", TFF=True, opencl=True) # new fps: 50
# Making sure content is preceived as frame based
clip = core.std.SetFrameProps(clip=clip, _FieldBased=0) # progressive
# Deinterlacing using QTGMC
original = havsfunc.QTGMC(Input=original, Preset="Fast", TFF=True, opencl=True) # new fps: 50
# Making sure content is preceived as frame based
original = core.std.SetFrameProps(clip=original, _FieldBased=0) # progressive
clip = core.std.CropRel(clip=clip, left=2, right=0, top=68, bottom=70)# cropping to 718x438
original = core.std.CropRel(clip=original, left=2, right=0, top=68, bottom=70)# cropping to 718x438
# Resizing using 10 - bicubic spline
clip = core.fmtc.resample(clip=clip, kernel="spline16", w=720, h=310, interlaced=False, interlacedd=False) # resolution 720x310 before YUV420P8 after YUV420P16

# changing range from limited to full range for vsProPainter
clip = core.resize.Bicubic(clip, range_in_s="limited", range_s="full")
# setting color range to PC (full) range.
clip = core.std.SetFrameProps(clip=clip, _ColorRange=0)
# adjusting color space from YUV420P8 to RGB24 for vsProPainter
clip = core.resize.Bicubic(clip=clip, format=vs.RGB24, matrix_in_s="709", range_s="full")
# Inpainting using ProPainter
from vspropainter import propainter_outpaint as ProPainterOutpaint
clip = ProPainterOutpaint(clip=clip, length=80, outpaint_size=(720, 322)) # outpainting to 720x322
# internally changing color matrix for YUV<>RGB to '470bg' undoing color matrix change for vsProPainter
# changing range from full to limited range for vsProPainter
clip = core.resize.Bicubic(clip, range_in_s="full", range_s="limited")
clip = core.resize.Bicubic(clip=clip, format=vs.YUV420P10, matrix_s="470bg", range_s="limited", dither_type="error_diffusion")

clip.set_output()

the output is 720x310 not 720x322.
Looking at the example:
clip = core.std.CropRel(clip=clip, left=0, right=0, top=52, bottom=52)# cropping to 720x300
## changing color matrix from '470bg' to '709' for vsProPainter
clip = core.resize.Bicubic(clip, matrix_in_s="470bg", matrix_s="709")
# changing range from limited to full range for vsProPainter
clip = core.resize.Bicubic(clip, range_in_s="limited", range_s="full")
# setting color range to PC (full) range.
clip = core.std.SetFrameProps(clip=clip, _ColorRange=0)
# adjusting color space from YUV420P8 to RGB24 for vsProPainter
clip = core.resize.Bicubic(clip=clip, format=vs.RGB24, matrix_in_s="709", range_s="full")
# Inpainting using ProPainter
import vspropainter
clip = vspropainter.propainter_outpaint(clip=clip, length=80, outpaint_size=(720, 340))
the output is 720x300. Same for the second exsample.

=> This does not seem correct.

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply


Messages In This Thread
ProPainter Vapoursynth filter - by Selur - 28.05.2024, 14:23
RE: ProPainter Vapoursynth filter - by Selur - 28.05.2024, 15:15
RE: ProPainter Vapoursynth filter - by Selur - 28.05.2024, 15:47
RE: ProPainter Vapoursynth filter - by Dan64 - 28.05.2024, 18:04
RE: ProPainter Vapoursynth filter - by Selur - 28.05.2024, 18:23
RE: ProPainter Vapoursynth filter - by Dan64 - 28.05.2024, 18:30
RE: ProPainter Vapoursynth filter - by Selur - 28.05.2024, 18:43
RE: ProPainter Vapoursynth filter - by Dan64 - 28.05.2024, 19:05
RE: ProPainter Vapoursynth filter - by Selur - 28.05.2024, 19:28
RE: ProPainter Vapoursynth filter - by Dan64 - 28.05.2024, 19:43
RE: ProPainter Vapoursynth filter - by Selur - 28.05.2024, 19:58
RE: ProPainter Vapoursynth filter - by Dan64 - 28.05.2024, 20:10
RE: ProPainter Vapoursynth filter - by Selur - 28.05.2024, 20:17
RE: ProPainter Vapoursynth filter - by Dan64 - 28.05.2024, 20:28
RE: ProPainter Vapoursynth filter - by Selur - 28.05.2024, 20:33
RE: ProPainter Vapoursynth filter - by Dan64 - 28.05.2024, 20:36
RE: ProPainter Vapoursynth filter - by Selur - 28.05.2024, 20:40
RE: ProPainter Vapoursynth filter - by Dan64 - 28.05.2024, 21:21
RE: ProPainter Vapoursynth filter - by Selur - 28.05.2024, 22:06
RE: ProPainter Vapoursynth filter - by Selur - 28.05.2024, 22:52
RE: ProPainter Vapoursynth filter - by Dan64 - 28.05.2024, 22:56
RE: ProPainter Vapoursynth filter - by Selur - 29.05.2024, 07:13
RE: ProPainter Vapoursynth filter - by Selur - 29.05.2024, 09:08
RE: ProPainter Vapoursynth filter - by Selur - 29.05.2024, 15:55
RE: ProPainter Vapoursynth filter - by Dan64 - 29.05.2024, 17:12
RE: ProPainter Vapoursynth filter - by Selur - 29.05.2024, 17:14
RE: ProPainter Vapoursynth filter - by Dan64 - 29.05.2024, 17:38
RE: ProPainter Vapoursynth filter - by Selur - 29.05.2024, 17:45
RE: ProPainter Vapoursynth filter - by Selur - 29.05.2024, 17:56
RE: ProPainter Vapoursynth filter - by Dan64 - 29.05.2024, 18:52
RE: ProPainter Vapoursynth filter - by Selur - 29.05.2024, 20:45
RE: ProPainter Vapoursynth filter - by Selur - 29.05.2024, 20:56
RE: ProPainter Vapoursynth filter - by Dan64 - 29.05.2024, 21:48
RE: ProPainter Vapoursynth filter - by Selur - 29.05.2024, 21:50
RE: ProPainter Vapoursynth filter - by Selur - 29.05.2024, 22:30
RE: ProPainter Vapoursynth filter - by Selur - 30.05.2024, 11:01
RE: ProPainter Vapoursynth filter - by Dan64 - 30.05.2024, 20:21
RE: ProPainter Vapoursynth filter - by Selur - 30.05.2024, 20:27
RE: ProPainter Vapoursynth filter - by Dan64 - 30.05.2024, 20:37
RE: ProPainter Vapoursynth filter - by Selur - 30.05.2024, 21:03
RE: ProPainter Vapoursynth filter - by Dan64 - 30.05.2024, 22:06
RE: ProPainter Vapoursynth filter - by Selur - 31.05.2024, 06:39
RE: ProPainter Vapoursynth filter - by Selur - 31.05.2024, 07:20
RE: ProPainter Vapoursynth filter - by Dan64 - 31.05.2024, 17:54
RE: ProPainter Vapoursynth filter - by Selur - 31.05.2024, 17:59
RE: ProPainter Vapoursynth filter - by Selur - 31.05.2024, 19:17
RE: ProPainter Vapoursynth filter - by Dan64 - 31.05.2024, 22:07
RE: ProPainter Vapoursynth filter - by Selur - 01.06.2024, 07:00
RE: ProPainter Vapoursynth filter - by Dan64 - 01.06.2024, 09:59
RE: ProPainter Vapoursynth filter - by Selur - 01.06.2024, 10:06
RE: ProPainter Vapoursynth filter - by Dan64 - 01.06.2024, 10:27
RE: ProPainter Vapoursynth filter - by Selur - 01.06.2024, 10:37
RE: ProPainter Vapoursynth filter - by Dan64 - 01.06.2024, 13:55
RE: ProPainter Vapoursynth filter - by Dan64 - 01.06.2024, 23:11
RE: ProPainter Vapoursynth filter - by Selur - 02.06.2024, 08:20
RE: ProPainter Vapoursynth filter - by Dan64 - 02.06.2024, 08:48
RE: ProPainter Vapoursynth filter - by Selur - 02.06.2024, 09:01
RE: ProPainter Vapoursynth filter - by Dan64 - 02.06.2024, 09:33
RE: ProPainter Vapoursynth filter - by Selur - 02.06.2024, 09:38
RE: ProPainter Vapoursynth filter - by Dan64 - 04.06.2024, 18:40
RE: ProPainter Vapoursynth filter - by Dan64 - 04.06.2024, 19:07
RE: ProPainter Vapoursynth filter - by Selur - 04.06.2024, 19:09
RE: ProPainter Vapoursynth filter - by Dan64 - 04.06.2024, 19:17
RE: ProPainter Vapoursynth filter - by Selur - 04.06.2024, 19:34
RE: ProPainter Vapoursynth filter - by Dan64 - 04.06.2024, 19:50
RE: ProPainter Vapoursynth filter - by Selur - 04.06.2024, 19:59
RE: ProPainter Vapoursynth filter - by Dan64 - 05.06.2024, 18:37
RE: ProPainter Vapoursynth filter - by Selur - 05.06.2024, 19:14
RE: ProPainter Vapoursynth filter - by Dan64 - 05.06.2024, 20:23
RE: ProPainter Vapoursynth filter - by Selur - 06.06.2024, 15:06
RE: ProPainter Vapoursynth filter - by Selur - 06.06.2024, 16:24
RE: ProPainter Vapoursynth filter - by Dan64 - 06.06.2024, 18:28
RE: ProPainter Vapoursynth filter - by Selur - 06.06.2024, 18:33
RE: ProPainter Vapoursynth filter - by Dan64 - 06.06.2024, 18:45
RE: ProPainter Vapoursynth filter - by Selur - 06.06.2024, 18:50
RE: ProPainter Vapoursynth filter - by safshe - 11.06.2024, 09:04
RE: ProPainter Vapoursynth filter - by Selur - 11.06.2024, 17:00
RE: ProPainter Vapoursynth filter - by Dan64 - 11.06.2024, 17:27
RE: ProPainter Vapoursynth filter - by Selur - 11.06.2024, 17:33
RE: ProPainter Vapoursynth filter - by Selur - 22.06.2024, 13:48
RE: ProPainter Vapoursynth filter - by Dan64 - 22.06.2024, 23:31
RE: ProPainter Vapoursynth filter - by Selur - 23.06.2024, 07:16
RE: ProPainter Vapoursynth filter - by Dan64 - 23.06.2024, 10:00
RE: ProPainter Vapoursynth filter - by Selur - 23.06.2024, 10:11
RE: ProPainter Vapoursynth filter - by Dan64 - 23.06.2024, 10:25
RE: ProPainter Vapoursynth filter - by Selur - 23.06.2024, 10:29
RE: ProPainter Vapoursynth filter - by Dan64 - 23.06.2024, 10:37
RE: ProPainter Vapoursynth filter - by Selur - 27.06.2024, 20:25
RE: ProPainter Vapoursynth filter - by Dan64 - 28.06.2024, 17:58
RE: ProPainter Vapoursynth filter - by Selur - 28.06.2024, 18:04
RE: ProPainter Vapoursynth filter - by Dan64 - 28.06.2024, 18:16
RE: ProPainter Vapoursynth filter - by Selur - 28.06.2024, 18:18
RE: ProPainter Vapoursynth filter - by Dan64 - 28.06.2024, 18:27
RE: ProPainter Vapoursynth filter - by Selur - 28.06.2024, 18:28
RE: ProPainter Vapoursynth filter - by Dan64 - 28.06.2024, 20:39
RE: ProPainter Vapoursynth filter - by Selur - 28.06.2024, 20:53
RE: ProPainter Vapoursynth filter - by Selur - 28.06.2024, 21:12
RE: ProPainter Vapoursynth filter - by Dan64 - 28.06.2024, 22:49
RE: ProPainter Vapoursynth filter - by Selur - 29.06.2024, 08:08
RE: ProPainter Vapoursynth filter - by Dan64 - 29.06.2024, 08:30
RE: ProPainter Vapoursynth filter - by Selur - 29.06.2024, 08:41
RE: ProPainter Vapoursynth filter - by Dan64 - 29.06.2024, 09:19
RE: ProPainter Vapoursynth filter - by Selur - 29.06.2024, 09:23
RE: ProPainter Vapoursynth filter - by Selur - 29.06.2024, 10:47
RE: ProPainter Vapoursynth filter - by Selur - 29.06.2024, 19:40
RE: ProPainter Vapoursynth filter - by Dan64 - 29.06.2024, 20:56
RE: ProPainter Vapoursynth filter - by Selur - 25.10.2024, 11:43
RE: ProPainter Vapoursynth filter - by Selur - 25.10.2024, 12:49
RE: ProPainter Vapoursynth filter - by Dan64 - 28.10.2024, 18:40
RE: ProPainter Vapoursynth filter - by Selur - 28.10.2024, 18:46
RE: ProPainter Vapoursynth filter - by Dan64 - 29.10.2024, 00:21
RE: ProPainter Vapoursynth filter - by Dan64 - 29.10.2024, 11:01

Forum Jump:


Users browsing this thread: 2 Guest(s)