Uses of Class
dev.brachtendorf.jimagehash.datastructures.tree.binaryTree.BinaryTree
-
Packages that use BinaryTree Package Description dev.brachtendorf.jimagehash.matcher.cached Cached image matchers allow to check images against a batch of previously added images keeping the buffered image object and hashes in memory.dev.brachtendorf.jimagehash.matcher.persistent Persistent image matchers allow to check images against a batch of previously added images keeping only the created hashes coupled with a unique identifier of the image. -
-
Uses of BinaryTree in dev.brachtendorf.jimagehash.matcher.cached
Fields in dev.brachtendorf.jimagehash.matcher.cached with type parameters of type BinaryTree Modifier and Type Field Description protected HashMap<HashingAlgorithm,BinaryTree<BufferedImage>>ConsecutiveMatcher. binTreeMapBinary Tree holding results for each individual hashing algorithm -
Uses of BinaryTree in dev.brachtendorf.jimagehash.matcher.persistent
Fields in dev.brachtendorf.jimagehash.matcher.persistent with type parameters of type BinaryTree Modifier and Type Field Description protected HashMap<HashingAlgorithm,BinaryTree<String>>PersitentBinaryTreeMatcher. binTreeMapBinary Tree holding results for each individual hashing algorithm
-