- 博客(1)
- 收藏
- 关注
转载 OpenCV_Mark
Sobel 实现C++ 备忘 #include "cv.h" #include "highgui.h" #include "math.h" #include "stdio.h" #include "malloc.h" IplImage *image; //声明IplImage指针 int height, width; CvScalar s; int sobel_y[9] = { 1, 2, 1, 0, 0, 0, -1, -2, -1 }; //y方向sobel算子 int sobel_x
2020-10-11 16:33:44
262
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人