I'm trying to sharpen an image using EmguCv using the following code
Image<Bgr, Byte> myImage = new Image<Bgr, Byte>(bm_dest);
CvInvoke.GaussianBlur(myImage, myImage, new Size(0, 0), 3);
Image<Bgr, byte> blur = myImage.AddWeighted(myImage, 1.5, -0.5, 0);
bm_dest = blur.Bitmap;
An referring this blog post http://opencv-help.blogspot.in/2013/01/how-to-sharpen-image-using-opencv.html
But the output image gets blurry.What im i doing wrong? Please advice.