shimat / opencvsharp

OpenCV wrapper for .NET
Apache License 2.0
5.37k stars 1.15k forks source link

cvSmooth #1587

Closed GongKuiJun closed 1 year ago

GongKuiJun commented 1 year ago

How to call cvSmooth

shimat commented 1 year ago

OpenCV 1.x's cvSmooth was split into separate functions such as cv::medianBlur, cv::GaussianBlur, etc. in OpenCV 2.x and later. In OpenCvSharp, try methods such as Cv2.GaussianBlur.

GongKuiJun commented 1 year ago

Thank you