Edge Detection of an image
What does it do?
Edge Detection operation can be used to detect the edges for an image using a 3*3 kernel matrix.
Example in Java for Edge Detection an image
File input = new File("path\to\file");
File output = new File("path\to\output rotated file");
ImageProcessingOperations operations = new ImageProcessingOperations();
operations.edgeDetection();
//you can chain other operations here like rotate, scale, etc
JDeli.convert(input,output,operations);
Click here for a full list of Image Processing Operations and more general information on Image processing with JDeli.