Determine the possible maximum and minimum results (pixel values) for the following linear filter when applied to an 8-bit grayscale image (with pixel values in the range [0, 255]):
H = [
-1 -2 0
-2 0 2
0 2 1
].
Assume that no clamping of the results occurs.