pHash or perceptual hash is an algorithm for creating fingerprints of multimedia data (images, audio, etc).

learn more… | top users | synonyms

0
votes
1answer
23 views

Phash vs. SIFT in identifying similar image

I have questions about both sift and phash First of all, I'm using SIFT to identify similar image in real-time service. Like pictures by phone-camera, small amount of rotation and blurred effect ...
1
vote
1answer
79 views

Convert an image loaded using PIL to a Cimg image object

I am trying to convert a iamge loaded using PIL to a Cimg image object. I understand that Cimg is a c++ library and PIL is a python imaging library. Given an image url, my aim is to calculate the ...
2
votes
0answers
184 views

Python equivalent of DCT image hash function used in pHash module

I have an existing python program that accepts an image URL and does manipulations on the image loaded. I tried passing the image data to the pHash module in C++ and then get the image hash. I've ...
0
votes
0answers
103 views

Error compiling pHash PHP-Extension [closed]

we are trying to get pHash (http://phash.org/) and the pHash PHP-Extension running (debian 6). pHash could be compiled without problems... we get an error installing the PHP-Extension (in ...
2
votes
1answer
284 views

Hamming Distance optimization for MySQL or PostgreSQL?

I trying to improve search similar images pHashed in MySQL database. Right now I comparing pHash counting hamming distance like this: SELECT * FROM images WHERE BIT_COUNT(hash ^ 2028359052535108275) ...
0
votes
0answers
92 views

Does anyone know a good guide to using the pHash library?

I need to do some audio fingerprinting, and pHash seems like it would fit my needs. However, I am a novice programmer and find the documentation too terse for me to easily understand, and their ...
0
votes
0answers
130 views

Search similar images solution with pHash

A lot of images stored in database. I compute every image's hash with pHash and store the hash value into database. How can I search the known image's similar images? Need I traversal every images ...
1
vote
0answers
30 views

How to compile pHash for iOS [duplicate]

Possible Duplicate: Compiling pHash for iOS I've read the documentation but there's no mention of iOS/arm and Google doesn't help. So if anyone was able to compile pHash for iOS please ...
0
votes
0answers
202 views

Linking Static Library in xcode

I have spent all day attempting to get pHash working in an OS X app using Xcode 4.5. First step was to built a phash static library (libphash.a) using homebrew. Several of the dependencies were ...
0
votes
1answer
242 views

postgresql c-extension loads another external library

I need to compare pHashes (phash.org) with a hamming distance function. I tried the one from pg_similarity, but it doesn't seem to work right. (identical pHashes don't have a hamming distance of 0). ...
0
votes
1answer
578 views

How to build pHash on MacOSX Lion (using latest ffmpeg-devel)

Building pHash 0.9.4 on OSX can turn out to be tricky. For those of you who've run into issues, my somewhat lengthy answer below might help.
11
votes
1answer
383 views

Compiling pHash for iOS

How to compile pHash for iOS? I read the documentation but there's no mention of iOS/arm and Google doesn't help. So if anyone was able to compile pHash for iOS please share your experience.
0
votes
2answers
254 views

Troubles when compiling phash program

here is some (probably) very simple problem: I'm trying to use the perceptual hashing library pHash with Ubuntu 11.10. I already had ffmpeg installed, by the way this is what I've done: sudo apt-get ...
0
votes
1answer
358 views

Building the pHash library on Windows

I've been trying to build pHash(http://phash.org/) on my windows machine and haven't been having any luck. I'm new to programming desktop applications. I will be using the pHash library with Python ...
1
vote
0answers
593 views

What type of phash Algorithm is this?

As i read about phash, there are four types: A discrete Cosine transform (DCT) based A Marr-Hildreth operator based A radial variance based and A block mean value based image hash function. in the ...
4
votes
1answer
1k views

What alternatives are there to the pHash open source perceptual hash library?

I know you can use pHash from .NET or Java, but I would like a pure .NET (preferably) or Java implementation. Are there any others available? I am interested in the image hashing functionality ...
0
votes
1answer
400 views

Why create a hash in a perceptual Hash?

I've been working through the examples at http://www.hackerfactor.com/blog/index.php?/archives/432-Looks-Like-It.html&comment-submitted#feedback and I got stuck trying to create a hash from the ...
1
vote
0answers
250 views

Difference between pHash nearest neighbor and color histogram nearest neighbor?

I'm looking to create an animated series of photos that are as similar as possible. while researching I've come across two methods. Generate a pHash of the images and do a nearest neighbor using the ...
1
vote
1answer
345 views

Create CImg<uint8_t> from byte array?

I'm trying to modify a C++ library that has a function that creates a CImg instance from an image file, to use a byte array instead. Is this possible? I found one method that appears to allow it... ...
2
votes
2answers
500 views

pHash (image-hash) in objective-c doesn't work

i used brew to create a compiled library from phash i have imported the CImg.h file and everything compiles but it doesn't work. i want to make a hash from an image but i always get the same output ...
0
votes
1answer
440 views

How to add unmanaged dll to show up in Add Reference's COM tab

I am currently trying to use pHash.dll on http://phash.org Unfortunately it was written in C++, I'd have to use DLLImport But the problem I am having is how to register pHash.dll (compiled thru ...