Skip to content

Commit

Permalink
MVLightPreset: Comment out until MVTools rewrite complete
Browse files Browse the repository at this point in the history
  • Loading branch information
LightArrowsEXE committed Jan 27, 2025
1 parent d3eb22a commit 270e791
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion lvsfunc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
from .misc import *
from .models import *
from .nn import *
from .presets import *
# from .presets import *
from .random import *
from .util import *
30 changes: 15 additions & 15 deletions lvsfunc/presets.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
from typing import Any
# from typing import Any

from vsdenoise import MotionMode, Prefilter, SADMode, SearchMode
# from vsdenoise import MotionMode, Prefilter, SADMode, SearchMode

__all__: list[str] = [
'MVLightPreset',
# 'MVLightPreset',
]


MVLightPreset: dict[str, Any] = dict(
block_size=16, overlap=8,
range_conversion=4.0,
sad_mode=SADMode.SPATIAL.same_recalc,
search=SearchMode.DIAMOND,
motion=MotionMode.HIGH_SAD,
prefilter=Prefilter.DFTTEST(
sloc=[(0.0, 1.0), (0.2, 4.0), (0.35, 12.0), (1.0, 24.0)],
ssystem=1, planes=0
),
planes=None
)
# MVLightPreset: dict[str, Any] = dict(
# block_size=16, overlap=8,
# range_conversion=4.0,
# sad_mode=SADMode.SPATIAL,
# search=SearchMode.DIAMOND,
# motion=MotionMode.SAD,
# prefilter=Prefilter.DFTTEST(
# sloc=[(0.0, 1.0), (0.2, 4.0), (0.35, 12.0), (1.0, 24.0)],
# ssystem=1, planes=0
# ),
# planes=None
# )
"""
Light's MVTools preset.
Expand Down

0 comments on commit 270e791

Please sign in to comment.