Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
What is GIMP's color matching algorithm?
#2
Never mind, I found the code:
It looks like it's just using perceptive proportions:
#define DISTP(R1,G1,B1,R2,G2,B2,D) do {D = sqrt( 30*SQR((R1)-(R2)) + \
59*SQR((G1)-(G2)) + \
11*SQR((B1)-(B2)) ); }while(0)
Reply


Messages In This Thread
RE: What is GIMP's color matching algorithm? - by trandoductin - 06-11-2021, 03:26 PM

Forum Jump: