Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.0.0 version. skip codacy #25

Merged
merged 41 commits into from
Jan 16, 2019
Merged
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift click to select a range
8097890
A quick cleanup to prepare random forest image matchers
KilianB Dec 6, 2018
98ce751
Cleanup number 2
KilianB Dec 6, 2018
401fdd0
Random forest wip prototype
KilianB Dec 6, 2018
968f5e4
fix javadocs and imports
KilianB Dec 25, 2018
1efe256
nightly save. some progress on the random forest image matchers
KilianB Dec 25, 2018
d956628
Start developing version 3.0.0 fix hash to String method to correclty
KilianB Dec 26, 2018
530b351
Distinguish in supervised and unsupervised matchers. Extract TestData
KilianB Dec 26, 2018
4202c32
Extract tree data in random forest image matcher
KilianB Dec 26, 2018
46a0d3b
fix test cases
KilianB Dec 26, 2018
d17d286
Add optimization criteria for potential use in random forest
KilianB Dec 26, 2018
65188a7
move from float threshold precision to double
KilianB Dec 26, 2018
81fd277
update variable naming. average color hash uses gray values instead of
KilianB Dec 27, 2018
3096753
update javadocs
KilianB Dec 27, 2018
2911c11
Add utility methods to allow each hashing algorithm to implement it's
KilianB Dec 27, 2018
36d9805
add categorical matcher which is a image matcher that clusters images
KilianB Dec 27, 2018
762ae37
3.0.0 reduce technical debt (#21)
KilianB Dec 27, 2018
7c62db3
Make h2 dependency optional. Resolves #16
KilianB Dec 30, 2018
dbca498
add unit tests for h2 image matcher
KilianB Dec 31, 2018
a9a4933
Remove duplicate code by inheriting from ahash.
KilianB Dec 31, 2018
0ddb30d
add missing scope keywords
KilianB Dec 31, 2018
4bfa269
use explicit scoping in unit tests
KilianB Dec 31, 2018
f5d6ab7
remove unused variable
KilianB Dec 31, 2018
93eddaa
more scoping fixes
KilianB Dec 31, 2018
c9079f3
final bad smell refactoring
KilianB Dec 31, 2018
da3db29
Rename H2DbImageMatcher to H2DatabaseImageMatcher
KilianB Jan 2, 2019
afc026d
Swap from big integer to stringbuilder creation
KilianB Jan 6, 2019
61a7c7a
Refactor package structure
KilianB Jan 9, 2019
d9ef1f8
Change hash creation to utilize hashbuilder instead of string builder
KilianB Jan 9, 2019
3b05d4a
Update difference hash creation to utilize hash builder. adjust to image
KilianB Jan 9, 2019
dffa61c
Adjust algorithm id to account for incompatibility
KilianB Jan 9, 2019
06ea9a8
Add fuzzy hash and refactor binary trees
KilianB Jan 9, 2019
6350af0
Add categorical matcher
KilianB Jan 9, 2019
02f2cd9
add categorical matcher part 2
KilianB Jan 9, 2019
4906f41
refactor package structure
KilianB Jan 9, 2019
0107cf0
cleanup packages and update dependencies
KilianB Jan 9, 2019
5f4981b
intermediate progress random forest matcher. Move from in set to
KilianB Jan 9, 2019
579ec86
Batch update. Version 3.0.0 Commit history in private repo
KilianB Jan 16, 2019
794fcb0
update examples and remove createDefaultMatcher
KilianB Jan 16, 2019
5a2dc5a
bump version
KilianB Jan 16, 2019
6726458
Merge branch 'master' into 3.0.0_Image_classifier_and_double_imagemat…
KilianB Jan 16, 2019
d3104fd
Merge branch 'master' into 3.0.0_Image_classifier_and_double_imagemat…
KilianB Jan 16, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add missing scope keywords
  • Loading branch information
KilianB committed Dec 31, 2018
commit 0ddb30d8161aa7f598818fc14f054f62e42bb4b1
Original file line number Diff line number Diff line change
Expand Up @@ -242,12 242,12 @@ public PriorityQueue<Result<T>> getElementsWithinHammingDistance(Hash hash, int
*
*/
class NodeInfo {
protected Node node;
protected int distance;
protected int depth;
private Node node;
private int distance;
private int depth;

/** Current path of the node. Used for debugging*/
String curPath;
private String curPath;

public NodeInfo(Node node, int distance, int depth, String curPath) {
this.node = node;
Expand Down