opencv 利用API函数实现掩膜操作

 //利用API函数实现掩膜操作
Mat kernel = (Mat_(3, 3) << 0, -1, 0, -1, 5, -1, 0, -1, 0);   
filter2D(src, dst, src.depth(), kernel);
namedWindow("output", CV_WINDOW_AUTOSIZE);

你可能感兴趣的:(opencv 利用API函数实现掩膜操作)