add extra information on convolution module (#381)

This commit is contained in:
Mridul97
2018-10-05 17:30:05 +05:30
committed by Jeffrey Warren
parent 70654a5aac
commit fef021911b
3 changed files with 21 additions and 15 deletions

View File

@@ -49071,18 +49071,21 @@ arguments[4][147][0].apply(exports,arguments)
},{"./Module":170,"./info.json":172,"dup":147}],172:[function(require,module,exports){
module.exports={
"name": "Convolution",
"description": "Image Convolution using a given 3x3 kernel matrix",
"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.1111
"default": 0.1111,
"placeholder": 0.1111
},
"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"
}
"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"
}
}
}