I currently get to work phash (http://www.phash.org) in combination with ruby (https://github.com/toy/pHash/blob/master/lib/phash.rb).
If i use the described examples, it works.
But i want to extract only the hash - but i don't know how to do it
#!/usr/bin/env ruby
require 'rubygems'
require 'phash'
a = Phash::Image.new(ARGV[0])
b = Phash::Image.new(ARGV[1])
puts "a="
#output => #<Phash::ImageHash:0x00000002947080>
puts a.phash
puts "b="
#output same ..=> #<Phash::ImageHash:0x00000002946ef0>
puts b.compute_phash
# works as expected if ARGV[0]=ARGV[1] => 1.0
puts a % b
What you need is the
#data
method: