Skip to content
Advertisement

Filter in opencv/python

I am trying to learn filters in opencv and running this code. But the problem is that when ı run the code it gives me an almost dark image and warns me with “c:/Users/fazil/Desktop/Yeni Metin Belgesi (3).py:19: RuntimeWarning: overflow encountered in ubyte_scalars result[j,i,a]=int((image[j,i,a]+image[j,i-1,a]+image[j,i+1,a]+image[j+1,i,a]+image[j-1,i,a]+image[j+1,i+1,a]+image[j+1,i-1,a]+image[j-1,i-1,a]+image[j-1,i+1,a])/9)”. And if ı comment these out and run code with the lines working with cv2.filter2d method it gives me an almost whiite image. I mean, doesnt they have to do the same thing, and musnt that filter blur the image? Here’s my code;

JavaScript

Advertisement

Answer

The following two methods work for me in Python OpenCV

Input:

enter image description here

JavaScript

Blur Method 1:

enter image description here

Blur Method 2:

enter image description here

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement