I implemented Gaussian recursive filter(by R. Deriche) using OpenCV and c++. However, the result I’m getting is weird. I also tried normalizing the resulting image between 0 and 255 but even that doesn’t help.
any help would be great

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
the Image has to be taken as float in the input. The processing has to be done on this float image and then normalize the result using
Thanks for helping guys.