Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to detect if an image is a photo, clip art or a line drawing?

Tags:

What is the best way to identify an image's type? rwong's answer on this question suggests that Google segments images into the following groups:

  • Photo - continuous-tone
  • Clip art - smooth shading
  • Line drawing - bitonal

What is the best strategy for classifying an image into one of those groups? I'm currently using Java but any general approaches are welcome.

Thanks!


Update:

I tried the unique colour counting method that tyjkenn mentioned in a comment and it seems to work for about 90% of the cases that I've tried. In particular black and white photos are hard to correctly detect using unique colour count alone.

Getting the image histogram and counting the peeks alone doesn't seem like it will be a viable option. For example this image only has two peaks:

Here are two more images I've checked out:

like image 393
Luke Quinane Avatar asked Feb 20 '12 00:02

Luke Quinane


People also ask

What is the difference between photo and drawing?

What Is the Difference Between a Photograph and a Drawing? Photography is a type of art and technology that produces images on photosensitive surfaces, known as photographs or digital photographs. Drawing is a method of art creation that creates a picture, representation, likeness, or diagram.

Is an image a drawing?

Image - Any visual object that's modified or altered by a computer or an imaginary object created using a computer. Photo or photograph - Anything taken by a camera, digital camera, or photocopier. Picture - A drawing, painting, or artwork created on a computer.


1 Answers

Rather simple, but effective approaches to differentiate between drawings and photos. Use them in combination to achieve a the best accuracy:

1) Mime type or file extension

PNGs are typically clip arts or drawings, while JPEGs are mostly photos.

2) Transparency

If the image has an alpha channel, it's most likely a drawing. In case an alpha channel exists, you can additionally iterate over all pixels to check if transparency is indeed used. Here a Python example code:

from PIL import Image img = Image.open('test.png') transparency = False if img.mode in ('RGBA', 'RGBa', 'LA') or (img.mode == 'P' and 'transparency' in img.info):     if img.mode != 'RGBA': img = img.convert('RGBA')     transparency = any(px for px in img.getdata() if px[3] < 220)  print 'Transparency:', transparency 

3) Color distribution

Clip arts often have regions with identical colors. If a few color make up a significant part of the image, it's rather a drawing than a photo. This code outputs the percentage of the image area that is made from the ten most used colors (Python example):

from PIL import Image img = Image.open('test.jpg') img.thumbnail((200, 200), Image.ANTIALIAS) w, h = img.size print sum(x[0] for x in sorted(img.convert('RGB').getcolors(w*h), key=lambda x: x[0], reverse=True)[:10])/float((w*h)) 

You need to adapt and optimize those values. Is ten colors enough for your data? What percentage is working best for you. Find it out by testing a larger number of sample images. 30% or more is typically a clip art. Not for sky photos or the likes, though. Therefore, we need another method - the next one.

4) Sharp edge detection via FFT

Sharp edges result in high frequencies in a Fourier spectrum. And typically such features are more often found in drawings (another Python snippet):

from PIL import Image import numpy as np img = Image.open('test.jpg').convert('L') values = abs(numpy.fft.fft2(numpy.asarray(img.convert('L')))).flatten().tolist() high_values = [x for x in values if x > 10000] high_values_ratio = 100*(float(len(high_values))/len(values)) print high_values_ratio 

This code gives you the number of frequencies that are above one million per area. Again: optimize such numbers according to your sample images.

Combine and optimize these methods for your image set. Let me know if you can improve this - or just edit this answer, please. I'd like to improve it myself :-)

like image 57
Simon Steinberger Avatar answered Oct 21 '22 09:10

Simon Steinberger