diff --git a/bv/uebung8.txt b/bv/uebung8.txt index 96a9a31..8e3d506 100644 --- a/bv/uebung8.txt +++ b/bv/uebung8.txt @@ -10,16 +10,15 @@ The image has to be padded by 2 rows of zeros. The result of the correlation follows: ---------------- -| 1 | -2 | 1 | ---------------- -|-2 | 4 | -2 | ---------------- -| 1 | -2 | 1 | ---------------- +------------- +| 0 | 1 | 0 | +------------- +| 1 |-4 | 1 | +------------- +| 0 | 1 | 0 | +------------- -The resulting filter is the result of the outer product of both used filters -which makes it a separable filter. +The resulting filter is the Laplacian filter. 2.