Ah jetzt steht dort keine Null mehr. *freu*
Vor dem IF stand kein Begin und end?!
Delphi-Quellcode:
begin
b:=image1.width; h:=image1.height; // Breite und Höhe der Imagefelder
image2.width:=b; image2.height:=h;
schwellwert:=spinedit1.value; // Voreinstellung 10
z:=0;
For x:=0 to b-1 do
Begin
For y:=0 to h-1 do
Begin
farbe1 := image1.canvas.pixels[x,y];
farbe2 := image2.canvas.pixels[x,y];
wert:= (farbe1 and clred)-(farbe2 and clred);
If wert > schwellwert then
Begin
inc(z);
AddFound(z,x,y,wert);
end;
end;
end;
end;