From 06d4b4ea2fafcccf9f8d44895b43f46a5723d814 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Mon, 12 Dec 2016 10:28:22 +0100 Subject: [PATCH] [BV] Fixed exercise 1 of assignment 8 Signed-off-by: Jim Martens --- bv/uebung8.txt | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) 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.