OpenCV.Sobel算子、Laplance算子

两种算子均可以用于提取图像的边缘。
#include
#include
#include

using namespace std;
using namespace cv;

int main(int argc, const char* argv[])
{
utils::logging::setLogLevel(utils::logging::LOG_LEVEL_SILENT); //设置日志输出

Mat dst, src_gray, result, resultx, resulty;
Mat src = imread("E:/picture/8.jpg");
putText(src, "OpenCv_vigny", Point(50, 50), FONT_HERSHEY_COMPLEX, 1.0,
Scalar(12, 12, 127), 1, LINE_8, false);
GaussianBl

OpenCV.Sobel算子、Laplance算子最先出现在Python成神之路

版权声明:
作者:主机优惠
链接:https://www.techfm.club/p/16120.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>