码迷,mamicode.com
首页 > 其他好文 > 详细

Robot、Sobel、Scharr算子(一)

时间:2020-03-14 22:15:59      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:math   test   href   图片   uri   enc   note   mic   learning   

Robot算子

1 0
0 -1

\(Gx\)

0 1
-1 0

\(Gy\)

\(\left | G \right |=\sqrt{Gx^{2}+Gy^{2}}\)
原图:
技术图片

Robot_x处理后:
技术图片

Robot_y处理后:
技术图片

Robot_x 与Robot_y 合并
技术图片

Sobel算子

\(Gx=\begin{bmatrix} -1 & 0 &1 \\ -2& 0 &2 \\ -1& 0 &1 \end{bmatrix}*I\)
\(Gy=\begin{bmatrix} -1 & -2 &-1 \\ 0& 0 &0 \\ 1& 2&1 \end{bmatrix}*I\)
处理结果
技术图片

Scharr算子

\(Gx=\begin{bmatrix} -3 & 0 &3 \\ -10& 0 &10 \\ -3& 0 &3 \end{bmatrix}\)
\(Gy=\begin{bmatrix} -3 & -10 &-3 \\ 0& 0 &0 \\ 3& 10&3 \end{bmatrix}\)
处理结果
技术图片

本段代码地址:https://github.com/cyssmile/openCV_learning_notes/blob/master/opencv_test/opencv_017/opencv_017.cpp

Robot、Sobel、Scharr算子(一)

标签:math   test   href   图片   uri   enc   note   mic   learning   

原文地址:https://www.cnblogs.com/cyssmile/p/12493887.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!