{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "Lecture 03: Image Filtering (exercises)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import numpy as np\n", "import matplotlib.pyplot as plt\n", "from skimage import io, data, color" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# EX1: spatial domain filtering\n", "Build your own function(s) to convolve a filter kernel with an image." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## create zero-padding function" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "