I have an app. that uses RemoveNoise() function. When compiled as 32bit, it works fine. However, 64bit compile will cause AV. It seems to happen from within kf_fill() function.
Here is the simple test codes I use to produce the error (I've attached the sample .tif as well):
procedure TformMain.butnRemoveNoiseClick(Sender: TObject); begin imagMaster.IO.LoadFromFile('c:\temp\TestNoiseRemoval.tif');
if imagMaster.IEBitmap.PixelFormat = ie1g then begin imagMaster.Proc.RemoveNoise(2); end else begin ShowMessage('Not B/W'); end; end;