Convolve a column vector
- by Geoff
This is an OpenCV2 question.
I have a matrix:
cv::Mat_<Point3f> points;
representing some space curve. I want to smooth it (using, for example a Gaussian kernel).
I have tried using:
cv::Mat_<Point3f> result;
cv::GaussianBlur(points, result, cv::Size(4 * sigma, 1), sigma, sigma, cv::BORDER_WRAP);
But I get the error:
Assertion failed (columnBorderType != BORDER_WRAP)