• Brightening, e.g., log
• Darkening, e.g., nth power
• Power-law transformation • Intensity normalization
• Contrast compressing
• Global vs local
• Spatial domain image enhancement
• Addition, subtraction, multiplication, AND,
OR, Not, etc.
————————————————————————————————————————————
比如256级的灰度图(0~255)如果灰度为0,那么反转对应255,也就是256-1-0 = 255
效果如下:
也就是个指数函数
0 < gamma < 1, 斜率前期变化越快,也就是说特别黑的地方会很白,原来很白的地方变化不大。整体变白
gamma > 1, 斜率后期变化越快,也就是说特别白的地方会很黑,原来很白的地方变化不大。整体变黑。
例子:
gamma 越大越黑
假设r1 r2分别是原图中灰度最小最大值,也就是最黑最白点。把他们直接归为0和L-1,如下图:
Local Enhancement
– Each pixel is processed based on information of the entire image
– Often enhances global details
如果我们希望加强局部特征:
– Each pixel is processed based on information of a small area/sub‐image
calculate histogram using neighborhood of m ∗ m m *m m∗m about (x,y)
– Very useful for determining the difference between two images
– Used for “detection”
两图对减:
我们知道图像带有如下天然的特性:图像中每个像素点的值与其旁边的像素点的值比较接近。
既然图像中的每个像素点的值与其旁边像素的值比较接近,如果一个像素点的值被噪声干扰,那么是否可以用其周边区域的像素平均值来代替这个像素点的值呢。
这就是平均操作:即把每个像素的值改变为其与领域像素组成区域的平均值。
filter的计算公式:对应点和对应权重相乘累加和。
注意权重必须为正数
4.2.1 平均滤波器——mask越大越糊
• Often referred to as “de‐speckle operation”(是一种不断的去斑点操作)
• It converges(最终聚合)
– That is, if you perform it over and over for many times, eventually the image will not change.