1

I want to make an effective illumination compensation on iris images and I want this compensation to be based on color i.e. illumination compensation using color rather than texture. I corrected my images for various mechanical errors but I want a simple algorithm to compensate the illumination based on color. Any ideas?

nbanic
  • 1,270
  • 1
  • 8
  • 11
KronnorK
  • 539
  • 5
  • 17

2 Answers2

1

What you are interested in is white balancing (i.e. achieving color constancy). One of the simplest algorithms is the Gray-World algorithm and I would try that one first because it's very easy to implement (even though it's not very precise).

You also might want to try some Retinex based algorithms. If so, visit this site: http://www.fer.unizg.hr/ipg/resources/color_constancy/

It contains C++ implementations of several Retinex-based color constancy algorithms.

nbanic
  • 1,270
  • 1
  • 8
  • 11
1

Try subtracting a low-pass copy of the same image?

BlessedKey
  • 1,615
  • 1
  • 10
  • 16