Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Multimedia (https://www.delphipraxis.net/16-multimedia/)
-   -   Delphi [GR32] What's wrong with my Gamma()? (https://www.delphipraxis.net/146694-%5Bgr32%5D-whats-wrong-my-gamma.html)

WojTec 25. Jan 2010 15:22


[GR32] What's wrong with my Gamma()?
 
This is my version of gamma:

Delphi-Quellcode:
procedure Gamma(ASource: TBitmap32; AFactor: Single);
var
  F: Single;
  I: Integer;
  LUT: TLUT8;
  B: TBitmap32;
begin
  AFactor := EnsureRange(AFactor, 0.1, 5);

  B := TBitmap32.Create;
  try
    B.Width := ASource.Width;
    B.Height := ASource.Height;

    for I := 0 to 255 do
    begin
      F := I / 255;
      F := Power(F, AFactor);

      LUT[I] := EnsureRange(Round(F * 255), 0, 255);
    end;

    ApplyLUT(B, ASource, LUT, True);

    ASource.Assign(B);
    ASource.Changed;
  finally
    B.free;
  end;
end;
Generally for values <0.1; 1.0) makes image lighter, for (1.0; 5.0> darker... What I did wrong?

jfheins 25. Jan 2010 15:50

Re: [GR32] What's wrong with my Gamma()?
 
Zitat:

Zitat von WojTec
Generally for values <0.1; 1.0) makes image lighter, for (1.0; 5.0> darker... What I did wrong?

In my eyes: nothing. What do you expect?

Maybe the function is correct, but your expectations are not ;)

WojTec 25. Jan 2010 16:43

Re: [GR32] What's wrong with my Gamma()?
 
Liste der Anhänge anzeigen (Anzahl: 1)
If you increase gamma, output should be lighter, aren't they? Please look on image.

jfheins 25. Jan 2010 17:04

Re: [GR32] What's wrong with my Gamma()?
 
Try to use the inverse of dthe factor:
Delphi-Quellcode:
F := Power(F, 1/AFactor);

WojTec 25. Jan 2010 17:20

Re: [GR32] What's wrong with my Gamma()?
 
Of course! I'm stupilo...

Ok, I have another question. To TBitmap32 I'm loading also PNGs. Why after function image lost alpha channel (last param in ApplyLUT() is True)?

-- Added --

I'm really stupid. In above procedure in B bitmap A channel is $FF for any pixel. To correctly apply LUT to this bitmap simply have to set alpha, for example by copying original bitmap. Sorry guys, next questions will be brainy.


Alle Zeitangaben in WEZ +1. Es ist jetzt 08:57 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz