I'm experiencing a mismatch between the OpenCV GaussianBlur function and the EmguCv CvInvoke.cvSmooth/Image.SmoothGaussian functions.
The GaussianBlur call:
GaussianBlur(src, dest, Size(13,13), 1.5, BORDER_REPLICATE);
The EmguCV call:
CvInvoke.cvSmooth(src, dst, SMOOTH_TYPE.CV_GAUSSIAN, 13, 13, 1.5, 0);
In both cases, src is a 32F, 3 channel image. I have verified that the contents of src are identical (saved them as bmp and did binary diff).
The cvSmooth call in opencv looks like this:
CV_IMPL void
cvSmooth( const void* srcarr, void* dstarr, int smooth_type,
int param1, int param2, double param3, double param4 )
{
cv::Mat src = cv::cvarrToMat(srcarr), dst0 = cv::cvarrToMat(dstarr), dst = dst0;
if( smooth_type == CV_GAUSSIAN )
cv::GaussianBlur( src, dst, cv::Size(param1, param2), param3, param4, cv::BORDER_REPLICATE );
}
...which seems to be doing the same thing my original OpenCV call is doing. CV_GAUSSIAN is defined as 2 in both EmguCV and OpenCV. The results end up very close, but the EmguCV image comes out a little bit blurrier than the OpenCV image. Any ideas? I also crossposted this question on the EmguCV forum.