I am converting old OpenCV code over to the new C++ api, and I am not sure how this gets translated.
I have a line executing what’s in the title, cvSmooth(src, dst, CV_MEDIAN, 3); and I’m not sure what the “proper” analogue is in the new C++ api.
What would it be?
From OpenCV documentation: “The function is now obsolete. Use
GaussianBlur(),blur(),medianBlur()orbilateralFilter()“.Tutorial using them.