I used the following code:
i= image....
table = Transpose@
{{"Gaussian", GaussianFilter[i, 5]},
{"bilateral", BilateralFilter[i, 5, .1]},
{"gradient", GradientFilter[i, 5] // ImageAdjust},
{"Gabor", GaborFilter[i, 5, {1, 1}] // ImageAdjust}};
Row[MapThread[Panel[#2, #1, ImageSize -> 200] &, table]]
So I can choose the best Image X filtering
And the then It seems to me that
{"Gaussian", GaussianFilter[i, 5]}
It works fine. See te last picture.
But now I want to get the numbers, how ?