salient-image
Simple salient processing on top of node-opencv
H. Xiaodi, H. Jonathan, C. Koch, Image signature: highlighting sparse salient regions, IEEE Transactions on Pattern Analysis and Machine Intelligence 34 (1) (2012) 194–200.
pre-requisites
- opencv
installation
npm install salient-image
examples
Examples
Images
assets/input.jpg | assets/output.png | assets/output_with_options.png |
---|---|---|
Code
var salient = ;var cv = ; // Without any options;
Example with options
var cv = ; // With options;
With existing opencv image as input
var img = new cv.Matrix(<...>);
salient({
image : img,
resize : [200, 200], // the resize size
sigma : 0.045, // the sigma of the gaussian kernel
gaussianKernel : [11, 11] // the size of the gaussian kernel
}, function(err, saliency){ ... });