有人能帮我找到墨西哥帽操作员的Open CVc++
代码吗。我需要检测车牌的代码。请帮帮我。
您可以通过将操作分解为:来获得经过LoG(Mexican Hat)过滤的图像
Mat mhFiltered; // resulting (MHat-filtered image)
Mat gaussianBlurredImage;
GaussianBlur(image, gaussianBlurredImage,Size(5,5),1.5); // First apply the gaussian operator
Laplacian(gaussianBlurredImage,mhFiltered,CV_32F,3); // Then the Laplacian
请注意,GaussianBlur
和Laplacian
的参数将改变最终结果。阅读OpenCV参考资料,了解它们的工作原理!
使用Difference of Gaussians(DoG)滤波器更简单,它是Mexican Hat滤波器的近似值。这只是两张被不同信号模糊的图像的区别。