Class ScharrFilter
- java.lang.Object
-
- dev.brachtendorf.jimagehash.hashAlgorithms.filter.ScharrFilter
-
- All Implemented Interfaces:
Filter,Serializable
public class ScharrFilter extends Object implements Filter
Edge detection filter similar to the sobel operator.3 0 -3 Gx : 10 0 -10 3 0 -3 3 10 3 Gy: 0 0 0 -3 -10 -3 G : sqrt(Gx^2+ Gy^2)- Since:
- 2.0.0
- Author:
- Kilian
- See Also:
- Sobel Operator, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ScharrFilter(double threshold)Create a scharr filter
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BufferedImagefilter(BufferedImage bi)Apply the filter to the input image and return an altered copy
-
-
-
Method Detail
-
filter
public BufferedImage filter(BufferedImage bi)
Description copied from interface:FilterApply the filter to the input image and return an altered copy
-
-