Uses of Class
dev.brachtendorf.jimagehash.hashAlgorithms.filter.Kernel
-
Packages that use Kernel 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 Kernel in dev.brachtendorf.jimagehash.hashAlgorithms
Constructors in dev.brachtendorf.jimagehash.hashAlgorithms with parameters of type Kernel Constructor Description AverageKernelHash(int bitResolution, Kernel... kernels) -
Uses of Kernel in dev.brachtendorf.jimagehash.hashAlgorithms.filter
Subclasses of Kernel in dev.brachtendorf.jimagehash.hashAlgorithms.filter Modifier and Type Class Description 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.classNonAveragingKernelFields in dev.brachtendorf.jimagehash.hashAlgorithms.filter with type parameters of type Kernel Modifier and Type Field Description protected List<Kernel>MultiKernel. kernelsThe kernels to apply back to backMethods in dev.brachtendorf.jimagehash.hashAlgorithms.filter that return Kernel Modifier and Type Method Description static KernelKernel. boxFilter(int width, int height, double factor)A box filter is a filter which applies the same factor to squared region of pixels and can be counted to the blurring filters.static KernelKernel. boxFilterNormalized(int width, int height)A box filter is a filter which applies the same factor to squared region of pixels and can be counted to the blurring filters.static KernelKernel. boxFilterNormalizedSep(int width, int height)static KernelKernel. edgeDetectionFilter(int strength)Deprecated.static KernelKernel. embossHorizontontalFilter(int depth)static KernelKernel. embossLeftDiagonalFilter(int depth)1 0 0 0 0 0 0 0 -1static KernelKernel. embossleftRightFilter(int depth)0 0 0 1 0 -1 0 0 0static KernelKernel. embossRightDiagonalFilter(int depth)0 0 1 0 0 0 -1 0 0static KernelKernel. gaussianFilter(int width, int height, double std)Creates a gaussian blur.static KernelKernel. identityFilter()Return an identity kernel.static KernelKernel. zeroFilter()Return an zero kernel.Constructors in dev.brachtendorf.jimagehash.hashAlgorithms.filter with parameters of type Kernel Constructor Description Kernel(Kernel template)Create a clone of the supplied kernelMultiKernel(Kernel... kernels)Create a multi kernel from the given kernels
-