Kilian Brachtendorf

Results 61 comments of Kilian Brachtendorf

I am not happy about the overall dependencies of this project and javafx has caused more issue than it has done good in the past. Maybe it's time to rethink...

If the same image is processed multiple times you could convert it to a known format beforehand once. ````java BufferedImage in = ImageIO.read(new File("2Linepdftojpeg.jpeg")); //Convert image since input type is...

I started implementing block mean hashes a while ago. The start of the implementation can be found at the block mean hash branch. https://github.com/KilianB/JImageHash/commit/28694f85fadcfd109deb9b175ba19fa2dbeb3ce9 I'll take a look at it...

sorry, I did not manage to work on this today

it currently is, but maybe we can alter it to something you seem appropriate. What behavior would you like? Create a single hash for the entire gif? - Concatenate different...

My suggestion is to create a "gif hash collection" allowing for different similarity distances. `intersect` find image matches contained in both gif collections `distinct` 1 - intersect `totalDistance` summed distance...

I define **distinct** as the inverse operation of intersection. Return all images which are unique to one collection. The issue tracker serves as notes and comments, therefore don't worry if...

http://www.academia.edu/4400094/A_Better_Edit_Distance_Measure_Allowing_for_Block_Swaps

LHash currently looks like simply performing an aHash or mHash with a kernel prepossessing. Maybe useful for motion tracking in videos.

A quick implementation will be added shortly. Which metric do we want to optimize? true positives? Gini impurity does not work in it's bare form due to the way test...