From e2e5810c401e33c8c6ff8b88ccea06b6ee6a75e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rostislav=20L=C3=A1n?= Date: Mon, 19 Dec 2022 18:28:12 +0100 Subject: [PATCH] Modified config file for parameter input. --- config/config.json | 56 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 47 insertions(+), 9 deletions(-) diff --git a/config/config.json b/config/config.json index dcbda4a..6455863 100644 --- a/config/config.json +++ b/config/config.json @@ -1,16 +1,54 @@ { "default": [ - "gaussian", - "erode", - "blur" + { + "name" : "denoise", + "h" : 30, + "searchWindowSize" : 21, + "templateWindowSize" : 7 + }, + { + "name": "sharpen", + "ksize" : 3 + }, + { + "name": "median", + "ksize": 3 + }, + { + "name": "gaussian", + "ksize" : 3 + }, + { + "name": "blur", + "ksize": 3, + "anchor": [ + -1, + -1 + ] + } ], "test1": [ - "gaussian", - "erode", - "blur" - ], + { + "name": "gaussian", + "ksize": 3, + "sigmaX": 0, + "sigmaY": 0 + }, + { + "name": "blur", + "ksize": 3 + } + ], "test2": [ - "gaussian", - "dilate" + { + "name": "gaussian", + "ksize": 3, + "sigmaX": 0, + "sigmaY": 0 + }, + { + "name": "morph", + "op" : "MORPH_DILATE" + } ] } \ No newline at end of file