Uses of Interface
dev.brachtendorf.jimagehash.hashAlgorithms.filter.Filter
-
Packages that use Filter Package Description dev.brachtendorf.jimagehash.hashAlgorithms Hashing algorithms convert images to a hash representation enabling an approximate similarity measurement without storing much data.dev.brachtendorf.jimagehash.hashAlgorithms.filter -
-
Uses of Filter in dev.brachtendorf.jimagehash.hashAlgorithms
Fields in dev.brachtendorf.jimagehash.hashAlgorithms with type parameters of type Filter Modifier and Type Field Description protected List<Filter>HashingAlgorithm. preProcessingMethods in dev.brachtendorf.jimagehash.hashAlgorithms with parameters of type Filter Modifier and Type Method Description voidHashingAlgorithm. addFilter(Filter filter)Add aFilterto this hashing algorithm which will be used to alter the image before the hashing operation is applied.booleanHashingAlgorithm. removeFilter(Filter filter)Remove the first occurance of aFilterfrom this hashing algorithm. -
Uses of Filter in dev.brachtendorf.jimagehash.hashAlgorithms.filter
Classes in dev.brachtendorf.jimagehash.hashAlgorithms.filter that implement Filter Modifier and Type Class Description classKernelKernel operations are shifting window masks applied to data point of an array to recompute it's value.static classKernel.GrayScaleFilterKernels whose filter class work with grayscale instead of seperate color channelsclassMaximumKernelA maximum kernel is a non linear filter scanning the image and replacing every value with the maximum value found in the neighborhood.classMedianKernelA median kernel is a non linear filter scanning the image and replacing every value with the median value found in the neighborhood.classMinimumKernelA maximum kernel is a non linear filter scanning the image and replacing every value with the minimum value found in the neighborhood.classMultiKernelWrapper class to apply multiple kernels in a consecutive manner.classNonAveragingKernelclassScharrFilterEdge detection filter similar to the sobel operator.classSobelFilterEdge detection filter
-