1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-06 11:26:25 +02:00

[BV] Fixed exercise 1 of assignment 8

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
2016-12-12 10:28:22 +01:00
parent 9de692ff7d
commit 06d4b4ea2f

View File

@ -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.