1 | initial version |
The Gaussian Weighted Average would, I believe, be the same as a Gaussian Blur, so that's a standard function.
To get the standard deviation of a 7x7 window, you can use this method: http://matlabtricks.com/post-20/calculate-standard-deviation-case-of-sliding-window
Where you replace the conv( ones)) with cv::blur.
Hope that helps.