文章大纲
本文大概需要40分钟
Spatial Operations in Image Processing 图像处理中的滤波操作
空间操作使用邻域中的像素来确定当前像素值。应用包括滤波和锐化等。它们用于计算机视觉等分割的许多步骤,是人工智能算法的关键组成部分【类似卷积操作】。
Spatial operations use pixels in a neighborhood to determine the present pixel value. Applications include filtering and sharpening. They are used in many steps in computer vision like segmentation and are a key building block in Artificial Intelligence algorithms.
- Linear Filtering
- Filtering Noise
- Gaussian Blur
- Image Sharpening
- Edges
- Median
- Threshold
# Used to view the images
import matplotlib<