Vapoursynth 光流算法 补帧 画面优化 Denoising
nazobase NAZOrip basement, with cython dll docs
DBmbk a debanding toolkit, for easier bezier curve generation
ffmpeg super resolution filter could get faster if run on gpu with libtensorflow
VESPCN: real-time super resolution
mpv is a media player with VapourSynth built-in, and that’s probably how vapoursynth gets in my mac via brew dependency manager
view.py is Python module for vapoursynth scripts that previews clips
to use opencv functions with vapoursynth
svp is free on linux, offering plugin for vlc while vlc cannot be run as root
you might harvest some prebuilt binaries of vapoursynth plugins for linux
补帧算法可适用于我们的动态水印追踪系统 但是可能需要优化 才能做到比较快速的补帧 因为水印所在位置的区间实际上只是白色的 不需要过于复杂的网络 同时这种补出来的水印需要逐帧处理 或者两帧一处理 生成的区间数量会非常的多
it is much easier to do this on windows since we need quick evaluation. might run this on virtualbox?
build scripts on how to build plugins for macos, including how to configure the installation prefix.
brew compatible, macos compatible vapoursynth plugin build script provider: homebrew-vsplugins does not provide build scripts for all plugins avaliable for windows, and it requires additional linking
tutorial on how to configure it: (is it intel only?)
Alternative VapourSynth Install Method (Brew):
IMPORTANT: Brew users will need to create and set the autoload folder prior to installing VapourSynth! Simply run the following commands:
Code:
mkdir -p /usr/local/lib/vapoursynth
mkdir -p "$HOME/Library/Application Support/VapourSynth"
touch "$HOME/Library/Application Support/VapourSynth/vapoursynth.conf"
echo UserPluginDir=/usr/local/lib/vapoursynth >> "$HOME/Library/Application Support/VapourSynth/vapoursynth.conf"
echo SystemPluginDir=/usr/local/lib/vapoursynth >> "$HOME/Library/Application Support/VapourSynth/vapoursynth.conf"
(Optional) Create desktop shortcuts for the plugins and scripts folders. Run the following commands in terminal:
Code:
mkdir $HOME/Desktop/VapourSynth
ln -s /usr/local/lib/vapoursynth $HOME/Desktop/VapourSynth/Plugins
ln -s /usr/local/lib/python3.9/site-packages $HOME/Desktop/VapourSynth/Scripts
Use brew command:
Code:
brew install vapoursynth
python opencv 光流算法详解 分为sparse和dense两种 某种程度上都可以计算场景的变换激烈程度
frame interpolation using deep optical flow
google research: FILM (frame interpolation for large motion)
vapoursynth get started (official doc)
vapoursynth plugin database only provide prebuilt binaries for windows while the plugin source code might work with linux and macos (if it has the source code)
VSRepo plugin manager installing vapoursynth plugin via commandline tool and vsrepo is only supported on windows, for other platforms we need to compile plugins manually.
nazorip gamma curve and convolution
flowpy: tool for visualizing and processing image with optical flow