Skip to content

Commit

Permalink
Update vsrgtools' BlurMatrix usage
Browse files Browse the repository at this point in the history
  • Loading branch information
Setsugennoao committed Nov 5, 2023
1 parent 345a753 commit eddf761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vsdeband/noise.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def _try_grain(src: vs.VideoNode, stre: tuple[float, float] = strength, **args:
grained = _wrap_implementation(clip, True)

if do_taverage:
average = grained.std.AverageFrames(BlurMatrix.gauss_from_radius(self.temporal_radius))
average = grained.std.AverageFrames(BlurMatrix.GAUSS.from_radius(self.temporal_radius))
grained = grained.std.Merge(average, self.temporal_average)
grained = grained[self.temporal_radius:-self.temporal_radius]

Expand Down

0 comments on commit eddf761

Please sign in to comment.