1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-07 03:46: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 The image has to be padded by 2 rows of zeros. The result of the correlation
follows: follows:
--------------- -------------
| 1 | -2 | 1 | | 0 | 1 | 0 |
--------------- -------------
|-2 | 4 | -2 | | 1 |-4 | 1 |
--------------- -------------
| 1 | -2 | 1 | | 0 | 1 | 0 |
--------------- -------------
The resulting filter is the result of the outer product of both used filters The resulting filter is the Laplacian filter.
which makes it a separable filter.
2. 2.