我是靠谱客的博主 活泼外套,最近开发中收集的这篇文章主要介绍Laplacian算子应用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

多元函数的二阶导数又称为Laplacian算子:
[ triangledown f(x, y) = frac {partial^2 f}{partial x^2} + frac {partial^2 f}{partial y^2} ]
对于图像上的离散(f(x, y)):
[ triangledown f(x, y) = f(x + 1, y) + f(x - 1,y) - 2 f(x,y) + f(x, y + 1) + f(x, y -1) - 2 f(x, y) \= f(x + 1, y) + f(x - 1,y) + f(x, y + 1) + f(x, y -1) - 4 f(x, y) ]
它对应的3阶mask为:
[ left [ begin{matrix} 0 & 1 & 0\ 1 & -4 & 1\ 0 & 1 & 0 end{matrix} right ] ]

若考虑两个对角线方向的偏导数, 则为:
[ left [ begin{matrix} 1 & 1 & 1\ 1 & -8 & 1\ 1 & 1 & 1 end{matrix} right ] ]

应用

孤立点检测(Isolated Point Detection)

如之前所说, 二阶mask对细节更敏感, 所以Laplacian算子的一个常见应用是孤立点检测.
chapter10_4.png?raw=true

线条检测(Line detection)

一个像素宽的是线条, 两个像素宽的是线条, 三个, 四个, ..., (n)个呢? 所以先得区分线条和region. 不比mask宽的才是线条, 比mask宽的就是region了. (DIP 10.2.3).
用于line detection的mask可以是方向不特异的(检测所有方向的线条, 如上面已列出的.), 也可以方向特异的(只检测某个方向的线条). 这种检测还是有thresholding过程: response大于threshold的才认为是属于检测目标的像素点.
chapter10_6.png?raw=true

应用(+45^circ)的mask:
chapter10_7.png?raw=true

转载于:https://www.cnblogs.com/dengdan890730/p/6145709.html

最后

以上就是活泼外套为你收集整理的Laplacian算子应用的全部内容,希望文章能够帮你解决Laplacian算子应用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部