phamilie 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/.gitignore +13 -0
- data/.travis.yml +7 -0
- data/Gemfile +3 -0
- data/LICENSE +674 -0
- data/README.md +56 -0
- data/ext/phamilie/.gitignore +1 -0
- data/ext/phamilie/extconf.rb +12 -0
- data/ext/phamilie/fingerprint.cpp +239 -0
- data/lib/phamilie.rb +62 -0
- data/phamilie.gemspec +16 -0
- data/spec/build_rotations +9 -0
- data/spec/lena1.png +0 -0
- data/spec/lena2.png +0 -0
- data/spec/lena3.png +0 -0
- data/spec/lena4.png +0 -0
- data/spec/lena5.png +0 -0
- data/spec/lena6.png +0 -0
- data/spec/phamilie_spec.rb +134 -0
- data/spec/rotation0.png +0 -0
- data/spec/rotation1.png +0 -0
- data/spec/rotation2.png +0 -0
- data/spec/rotation3.png +0 -0
- data/spec/rotation4.png +0 -0
- data/spec/rotation5.png +0 -0
- data/spec/rotation6.png +0 -0
- data/spec/rotation7.png +0 -0
- data/spec/sunflower.jpg +0 -0
- metadata +103 -0
data/spec/rotation0.png
ADDED
Binary file
|
data/spec/rotation1.png
ADDED
Binary file
|
data/spec/rotation2.png
ADDED
Binary file
|
data/spec/rotation3.png
ADDED
Binary file
|
data/spec/rotation4.png
ADDED
Binary file
|
data/spec/rotation5.png
ADDED
Binary file
|
data/spec/rotation6.png
ADDED
Binary file
|
data/spec/rotation7.png
ADDED
Binary file
|
data/spec/sunflower.jpg
ADDED
Binary file
|
metadata
ADDED
@@ -0,0 +1,103 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: phamilie
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Bharanee Rathna
|
8
|
+
- Ivan Kuchin
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2014-11-15 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rspec
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ! '>='
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '0'
|
21
|
+
type: :development
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ! '>='
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: '0'
|
28
|
+
description: phamilie is an image fingerprinting & comparison utility
|
29
|
+
email:
|
30
|
+
executables: []
|
31
|
+
extensions:
|
32
|
+
- ext/phamilie/extconf.rb
|
33
|
+
extra_rdoc_files: []
|
34
|
+
files:
|
35
|
+
- .gitignore
|
36
|
+
- .travis.yml
|
37
|
+
- Gemfile
|
38
|
+
- LICENSE
|
39
|
+
- README.md
|
40
|
+
- ext/phamilie/.gitignore
|
41
|
+
- ext/phamilie/extconf.rb
|
42
|
+
- ext/phamilie/fingerprint.cpp
|
43
|
+
- lib/phamilie.rb
|
44
|
+
- phamilie.gemspec
|
45
|
+
- spec/build_rotations
|
46
|
+
- spec/lena1.png
|
47
|
+
- spec/lena2.png
|
48
|
+
- spec/lena3.png
|
49
|
+
- spec/lena4.png
|
50
|
+
- spec/lena5.png
|
51
|
+
- spec/lena6.png
|
52
|
+
- spec/phamilie_spec.rb
|
53
|
+
- spec/rotation0.png
|
54
|
+
- spec/rotation1.png
|
55
|
+
- spec/rotation2.png
|
56
|
+
- spec/rotation3.png
|
57
|
+
- spec/rotation4.png
|
58
|
+
- spec/rotation5.png
|
59
|
+
- spec/rotation6.png
|
60
|
+
- spec/rotation7.png
|
61
|
+
- spec/sunflower.jpg
|
62
|
+
homepage: http://github.com/toy/phamilie
|
63
|
+
licenses:
|
64
|
+
- GPL
|
65
|
+
metadata: {}
|
66
|
+
post_install_message:
|
67
|
+
rdoc_options: []
|
68
|
+
require_paths:
|
69
|
+
- lib
|
70
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ! '>='
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
76
|
+
requirements:
|
77
|
+
- - ! '>='
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: '0'
|
80
|
+
requirements: []
|
81
|
+
rubyforge_project:
|
82
|
+
rubygems_version: 2.4.3
|
83
|
+
signing_key:
|
84
|
+
specification_version: 4
|
85
|
+
summary: compute image fingerprints and similarity
|
86
|
+
test_files:
|
87
|
+
- spec/build_rotations
|
88
|
+
- spec/lena1.png
|
89
|
+
- spec/lena2.png
|
90
|
+
- spec/lena3.png
|
91
|
+
- spec/lena4.png
|
92
|
+
- spec/lena5.png
|
93
|
+
- spec/lena6.png
|
94
|
+
- spec/phamilie_spec.rb
|
95
|
+
- spec/rotation0.png
|
96
|
+
- spec/rotation1.png
|
97
|
+
- spec/rotation2.png
|
98
|
+
- spec/rotation3.png
|
99
|
+
- spec/rotation4.png
|
100
|
+
- spec/rotation5.png
|
101
|
+
- spec/rotation6.png
|
102
|
+
- spec/rotation7.png
|
103
|
+
- spec/sunflower.jpg
|