这里我们要细分了,虽然 G x G_x Gx是对x求偏导得到,但是它反映的是在x方向上的三个像素值差异很大,那么假设黑色图像中一条白色竖线(有10行1列),那么卷积后:
是用来检测竖直边缘的
。用来检测水平边缘
的。
#include
#include
#include
#include
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/opencv.hpp"
// g++ test.cpp `pkg-config opencv --libs --cflags` -std=c++11 -pthread -o test
int main() {
cv::Mat src = cv::Mat::zeros(500, 500, CV_8UC1);
cv::Mat dst = cv::Mat::zeros(500, 500, CV_8UC1);
for (int y = 0; y < src.rows; ++y) {
src.at<unsigned char>(y, 250) = 255;
}
for (int x = 0; x < src.cols; ++x) {
src.at<unsigned char>(250, x) = 255;
}
// cv::Mat src = cv::imread("pppp.png");
// cv::cvtColor(src, src, cv::COLOR_BGR2GRAY);
// cv::Mat dst = src.clone();
cv::imshow("Image of src", src);
cv::Mat kernel_x = (cv::Mat_<char>(3, 3) << -1, 0, 1, -2, 0, 2, -1, 0, 1);
cv::Mat kernel_y = (cv::Mat_<char>(3, 3) << -1, -2, -1, 0, 0, 0, 1, 2, 1);
cv::Mat dst_x, dst_y;
cv::filter2D(src, dst_x, CV_8UC3, kernel_x);
cv::filter2D(src, dst_y, CV_8UC3, kernel_y);
cv::imshow("Image of sobel x", dst_x);
cv::imshow("Image of sobel y", dst_y);
cv::imshow("Image of sobel x+y", dst_x + dst_y);
//梯度
for (int i = 0; i < dst_x.cols; ++i) {
for (int j = 0; j < dst_x.rows; ++j) {
dst.at<uchar>(j, i) = std::sqrt(std::pow(dst_x.at<uchar>(j, i), 2) +
std::pow(dst_y.at<uchar>(j, i), 2));
}
}
cv::imshow("Image of sobel 梯度", dst);
while (cv::waitKey(0) != 'q') {
};
return 0;
}
通过 G x + G y G_x+G_y Gx+Gy计算得到:
通过 G x 2 + G y 2 {G_x}^2+{G_y}^2 Gx2+Gy2计算梯度得到:
#include
#include
#include
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/opencv.hpp"
// g++ test.cpp `pkg-config opencv --libs --cflags` -std=c++11 -pthread -o test
int main() {
cv::Mat src = cv::imread("pppp.png");
cv::cvtColor(src, src, cv::COLOR_BGR2GRAY);
cv::Mat dst = src.clone();
cv::imshow("Image of src", src);
cv::Mat kernel_x = (cv::Mat_<char>(3, 3) << -1, 0, 1, -2, 0, 2, -1, 0, 1);
cv::Mat kernel_y = (cv::Mat_<char>(3, 3) << -1, -2, -1, 0, 0, 0, 1, 2, 1);
cv::Mat dst_x, dst_y;
cv::filter2D(src, dst_x, CV_8UC3, kernel_x);
cv::filter2D(src, dst_y, CV_8UC3, kernel_y);
cv::imshow("Image of sobel x", dst_x);
cv::imshow("Image of sobel y", dst_y);
cv::imshow("Image of sobel x+y", dst_x + dst_y);
//梯度
for (int i = 0; i < dst_x.cols; ++i) {
for (int j = 0; j < dst_x.rows; ++j) {
dst.at<uchar>(j, i) = std::sqrt(std::pow(dst_x.at<uchar>(j, i), 2) +
std::pow(dst_y.at<uchar>(j, i), 2));
}
}
cv::imshow("Image of sobel 梯度", dst);
while (cv::waitKey(0) != 'q') {
};
return 0;
}
origin:
s o b e l − x sobel-x sobel−x: