AJ.
AJ.

Reputation: 2569

Pattern Recognition on Images

I need to develop an application where I will have to match images for similarity.

What image processing libraries can I use to develop this? is there an opensource framework available to accomplish this?

At this point I am open to any language but Java would be preferable.

Thanks in advance! AJ

Upvotes: 2

Views: 7700

Answers (3)

MediaMixer
MediaMixer

Reputation: 33

On http://www.vlfeat.org/ you can find some popular, open source computer vision algorithms including HOG, SIFT, k-means, hierarchical k-means etc., while on http://koen.me/research/colordescriptors/ the binaries to compute color descriptors within an image, such as color histograms and color SIFT descriptor are provided.

Furthermore, in MediaMixer Deliverable D1.1.2 you can find useful information about the implementation of image descriptors on concept detection and image classification. For further information you can join the MediaMixer community portal on http://community.mediamixer.eu/.

Upvotes: 0

jilles de wit
jilles de wit

Reputation: 7138

JavaCV, the Java interface to OpenCV and a lot of other computer vision libraries is what you are looking for. OpenCV contains most of the basic computer vision building blocks you'd need for such a project.

Upvotes: 1

High Performance Mark
High Performance Mark

Reputation: 78316

ImageJ is often recommended in answers to similar questions here on SO.

Upvotes: 1

Related Questions