Algorithms which extract and manipulate information from digital images.
991
votes
4answers
175k views
How do I find Waldo with Mathematica?
This was bugging me over the weekend: What is a good way to solve those Where's Waldo? ['Wally' outside of North America] puzzles, using Mathematica (image-processing and other functionality)?
Here ...
450
votes
13answers
31k views
Algorithm improvement for Coca-Cola can shape recognition
One of the most interesting projects I've worked in the past couple years as I was still a student, was a final project about image processing. The goal was to develop a system to be able to recognize ...
411
votes
18answers
24k views
Peak detection in a 2D array
I'm helping a veterinary clinic measuring pressure under a dogs paw. I use Python for my data analysis and now I'm stuck trying to divide the paws into (anatomical) subregions.
I made a 2D array of ...
127
votes
3answers
7k views
How can I improve my paw detection?
After my previous question on finding toes within each paw, I started loading up other measurements to see how it would hold up. Unfortunately, I quickly ran into a problem with one of the preceding ...
98
votes
11answers
55k views
Face recognition Library [closed]
I'm looking for a free face recognition library for a university project.
I'm not looking for face detection. I'm looking for actual recognition. That means finding images that contain specified ...
92
votes
3answers
9k views
How to sort my paws?
In my previous question I got an excellent answer that helped me detect where a paw hit a pressure plate, but now I'm struggling to link these results to their corresponding paws:
I manually ...
91
votes
9answers
69k views
UIImage: Resize, then Crop
I've been bashing my face into this one for literally days now, and even though I feel constantly that I am right on the edge of revelation, I simply cannot achieve my goal.
I thought, ahead of time ...
88
votes
7answers
13k views
Representing and solving a maze given an image
What is the best way to represent and solve a maze given an image?
Given an JPEG image (as seen above), what's the best way to read it in, parse it into some data structure and solve the maze? My ...
86
votes
3answers
5k views
What Haskell representation is recommended for 2D, unboxed pixel arrays with millions of pixels?
I want to tackle some image-processing problems in Haskell. I'm working with both bitonal (bitmap) and color images with millions of pixels. I have a number of questions:
On what basis should I ...
84
votes
13answers
73k views
High Quality Image Scaling C#
I want to scale an image in C# with quality level as good as Photoshop does. Is there any C# image processing library available to do this thing?
77
votes
8answers
20k views
Algorithm to compare two images
My task is pretty simple (well, it SOUNDS simple): given two different image files (in whatever format I choose), I need to write a program to predict the chance if one being the illegal copy of ...
73
votes
10answers
49k views
70
votes
9answers
4k views
Remove white background from an image and make it transparent
We're trying to do the following in Mathematica:
RMagick remove white background from image and make it transparent
But with actual photos it ends up looking lousy (like having a halo around the ...
70
votes
16answers
31k views
What is the best image manipulation library? [closed]
I would love to find out which is the best image manipulation library for which platforms and languages. Likely you could use a library under multiple platforms with the right API or Plugin ...
68
votes
9answers
66k views
What is the best java image processing library/approach?
I am using both the JAI media apis and ImageMagick?
ImageMagick has some scalability issues and the JNI based JMagick isn't attractive either.
JAI has poor quality results when doing resizing ...
50
votes
8answers
20k views
How would I tint an image programatically on the iPhone?
I would like to tint an image with a color reference. The results should look like the Multiply blending mode in Photoshop, where whites would be replaced with tint:
I will be changing the color ...
43
votes
15answers
26k views
How can I quantify difference between two images?
Here's what I would like to do:
I'm taking pictures with a webcam at regular intervals. Sort of like a time lapse thing. However, if nothing has really changed, that is, the picture pretty much ...
43
votes
12answers
12k views
Near-Duplicate Image Detection
What's a fast way to sort a given set of images by their similarity to each other.
At the moment I have a system that does histogram analysis between two images, but this is a very expensive ...
43
votes
2answers
13k views
GD vs ImageMagick vs Gmagick for jpg? [closed]
I am in the step to abandon GD for manipulating image in my website - it is awful.
Everyone saying to use ImageMagick because they are better than GD, but what about ImageMagick vs Gmagick (Swiss ...
38
votes
9answers
37k views
Image Processing, In Python? [closed]
I've recently come across a problem which requires at least a basic degree of image processing, can I do this in Python, and if so, with what?
37
votes
1answer
10k views
Image Segmentation using Mean Shift explained
Could anyone please help me understand how Mean Shift segmentation actually works?
Here is a 8x8 matrix that I just made up
103 103 103 103 103 103 106 104
103 147 147 153 147 ...
34
votes
3answers
3k views
Extracting segments from a list of 8-connected pixels
Current situation : I'm trying to extract segments from an image. Thanks to openCV's findContours() method, I now have a list of 8-connected point for every contours. However, these lists are not ...
33
votes
14answers
16k views
How can I measure the similarity between two images?
I would like to compare a screenshot of one application (could be a Web page) with a previously taken screenshot to determine whether the application is displaying itself correctly. I don't want an ...
33
votes
9answers
24k views
Image resize before upload
I need to provide a means for a user to upload photos to their web site in jpeg format. However, the photos are very large in original size, and I would like to make the resize before upload option ...
32
votes
3answers
18k views
Merging two images
I need to merge two images (BufferedImage) in Java. It wouldn't be a problem if there was no transparency. The base image already has some transparency. I want to keep this as it is and apply a "mask" ...
32
votes
18answers
2k views
Finding matches between high quality and low quality, pixelated images - is it possible ? How?
I have a problem. My company has given me an awfully boring task. We have two databases of dialog boxes. One of these databases contains images of horrific quality, the other very high quality.
...
31
votes
18answers
2k views
Is an algorithm to judge the age of person in a photo feasible?
My friend works for a non-profit organization working to stop the illegal exploitation of minors over sites such as craigslist.org, which is one of the more popular mediums. The question is whether or ...
30
votes
17answers
5k views
Algorithm for detecting “clusters” of dots
I have a 2D area with "dots" distributed on this area. I now am trying to detect "clusters" of dots, that is, areas with a certain high density of dots.
Any thoughts on (or links to articles with ...
30
votes
10answers
19k views
Image fingerprint to compare similarity of many images
I need to create fingerprints of many images (about 100.000 existing, 1000 new per day, RGB, JPEG, max size 800x800) to compare every image to every other image very fast. I can't use binary compare ...
30
votes
5answers
2k views
Cut out image in shape of text
I need to cut out an image in the shape of the text in another image. I think it's best shown in images.
This is a photo of a cat:
and this is the text I wish to cut out:
The resulting image ...
30
votes
2answers
6k views
Where can I find sample OpenGL ES 2.0 shaders that perform image processing tasks?
Where can I find OpenGL ES 2.0 shaders that can perform the following image processing tasks?
Colorspace transform ( RGB/YUV/HSL/Lab )
Swirling of the image
Converting to a sketch
Converting to an ...
30
votes
8answers
4k views
Detecting if two images are visually identical
Sometimes two image files may be different on a file level, but a human would consider them perceptively identical. Given that, now suppose you have a huge database of images, and you wish to know if ...
29
votes
5answers
15k views
Simple and fast method to compare images for similarity
I need a simple and fast way to compare two images for similarity. I.e. I want to get a high value if they contain exactly the same thing but may have some slightly different background and may be ...
29
votes
4answers
764 views
Automatic enhancement of scanned images
I'm developing a routine for automatic enhancement of scanned 35 mm slides. I'm looking for a good algorithm for increasing contrast and removing color cast. The algorithm will have to be completely ...
28
votes
2answers
15k views
OpenCV C++/Obj-C: Detecting a sheet of paper / Square Detection
I successfully implemented the OpenCV square-detection example in my test application, but now need to filter the output, because it's quiet messy - or is my code wrong?
I'm interested in the four ...
28
votes
6answers
1k views
How do I find Wally with Python?
Shamelessly jumping on the bandwagon :-)
Inspired by How do I find Waldo with Mathematica and the followup How to find Waldo with R, as a new python user I'd love to see how this could be done. It ...
28
votes
5answers
8k views
Viola-Jones' face detection claims 180k features
I've been implementing an adaptation of Viola-Jones' face detection algorithm. The technique relies upon placing a subframe of 24x24 pixels within an image, and subsequently placing rectangular ...
28
votes
4answers
884 views
Challenge: Take a 48x48 image, find contiguous areas that result in the cheapest Lego solution to create that image!
Background
Lego produces the X-Large Gray Baseplate, which is a large building plate that is 48 studs wide and 48 studs tall, resulting in a total area of 2304 studs. Being a Lego fanatic, I've ...
28
votes
2answers
2k views
Pygame water ripple effect
I have Googled for it but there are no ready scripts - as opposed to the same effect on Flash. I have checked the algorithm on The Water Effect Explained and also tested an implementation of the ...
27
votes
4answers
880 views
Quadrilateral Shape Finding Algorithm
I want to detect and COMPLETE all possible quadrilateral shapes from randomly located line segments!
The photo attached is an example, the lines might always appear in very different locations.
...
27
votes
4answers
13k views
python image recognition
what I want to do is a image recognition for a simple app:
given image (500 x 500) pxs ( 1 color background )
the image will have only 1 geometric figure (triangle or square or smaleyface :) ) of ...
27
votes
6answers
10k views
Kinect pattern recognition [closed]
I bought a Kinect to play around with on my PC in C#. (And what fun it is to program!)
I'm using CLNUIDevice.dll to get the depth image from Kinect. This works fine and I'm able to read the depth ...
26
votes
14answers
4k views
Showing too much 'skin' detection in software
I am building an ASP.NET web site where the users may upload photos of themselves. There could be thousands of photos uploaded every day. One thing my boss has asked a few time is if there is any way ...
26
votes
5answers
8k views
Is there a way to detect if an image is blurry?
I was wondering if there is a way to determine if an image is blurry or not by analyzing the image data.
26
votes
9answers
8k views
Red eye reduction algorithm
I need to implement red eye reduction for an application I am working on.
Googling mostly provides links to commercial end-user products.
Do you know a good red eye reduction algorithm, which could ...
25
votes
15answers
5k views
Removing Duplicate Images
We have a collection of photo images sizing a few hundred gigs. A large number of the photos are visually duplicates, but with differing filesizes, resolution, compression etc.
Is it possible to use ...
25
votes
3answers
9k views
Differences between AForge and OpenCV
I am just learning about computer vision and C#. It seems like two prominent image processing libraries are OpenCV and AForge. What are some of the differences of the two?
I am making a basic image ...
25
votes
2answers
6k views
Haskell image processing library?
Anyone have a recommendation for a good image processing package for Haskell? Why do you like it?
25
votes
3answers
2k views
How does Photoshop's magnetic lasso work?
Seems like GIMP's intelligent scissor is based on a paper from SIGGRAPH '95 on "Intelligent Scissors for Image Composition", as seen in one of the comments in the source.
However Magnetic Lasso in ...
24
votes
3answers
26k views
opencv multi channel element access
I'm trying to learn how to use openCV's new c++ interface.
How do I access elements of a multi channel matrix. for example:
Mat myMat(size(3, 3), CV_32FC2);
for (int i = 0; i < 3; ++i)
{
for ...