各位好: 有如下问题。
Use cv::filter2D() to create a filter that detects only 60-degree lines in an
image. Display the results on a sufficiently interesting image scene.
用filter2D() 实现一个滤波器,检测图片中60度角的线。 滤波器检测线?不是用来平滑图像去躁的吗?
也可能是实现类似双边滤波器,只不过用 表示 60 度角的矩阵做核, 矩阵数值是什么呢?
int k[5][3]={ 10, 3 , 1,
3 , 2, -1,
2 , 0,-2,
1, -2 ,-3,
-1,-3,-10}
Mat kernel (5,3,CV_8UC1,k);
这样的矩阵可以吗?
|