Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
revenz committed Aug 30, 2023
2 parents 350424b + 2c9e828 commit 2e719d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Scripts/Flow/Video/Video - Denoise Non-Linear Means.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/**
* Denoise frames using Non-Local Means algorithm.
* @author Alexander von Schmidsfeld
* @revision 1
* @revision 2
* @minimumVersion 1.0.0.0
* @param {string} Strength Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
* @param {int} Patch Set patch size. Default is 5. Must be odd number in range [0, 99].
* @param {int} Research Set research size. Default is 7. Must be odd number in range [0, 99].
* @output Deblocked Video
*/

function Script(strenght,patch,research)
function Script(strength,patch,research)
{
let ffmpeg = Variables.FfmpegBuilderModel;
if(!ffmpeg)
Expand Down
2 changes: 1 addition & 1 deletion repo.json
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
"Path": "Scripts/Flow/Video/Video - Denoise Non-Linear Means.js",
"Name": "Video - Denoise Non-Linear Means",
"Description": "Denoise frames using Non-Local Means algorithm.",
"Revision": 1,
"Revision": 2,
"MinimumVersion": "1.0.0.0"
},
{
Expand Down

0 comments on commit 2e719d6

Please sign in to comment.