{
    "name": "convolution",
    "description": "Image Convolution using a given 3x3 kernel matrix <a href='https://en.wikipedia.org/wiki/Kernel_(image_processing)'>Read more</a>",
    "inputs": {
  		"constantFactor":{
  			"type": "float",
  			"desc": "a constant factor, multiplies all the kernel values by that factor",
  			"default": 0.111,
        "min": 0.001,
        "max": 2,
        "step": 0.001     
  		},
      "kernelValues": {
        "type": "string",
        "desc": "nine space separated numbers representing the kernel values in left to right and top to bottom format.",
        "default": "1 1 1 1 1 1 1 1 1",
        "placeholder": "1 1 1 1 1 1 1 1 1"
      }
    },
    "docs-link":"https://github.com/publiclab/image-sequencer/blob/main/docs/MODULES.md#convolution-module"
}
