Documentation: Unsharp Mask
Description
Performs an unsharp mask operation on the image by first creating a blurred version of the image and then using the difference between the two images to sharpen the image.The blur method is the same as used in the Blur fast action. The radius parameter impacts performance the most.
Demo

Example usage
var img = new Image(); img.onload = function() { Pixastic.process(img, "unsharpmask", {amount:0.5}); } document.body.appendChild(img); img.src = "myimage.jpg";
Parameters
View source: unsharpmask.js
Browser support