Hi, I have to do a image processing with raspberry. I correctly installed opencv library and i wrote a program with IDLE. But when I run it there's a problem. The program: import cv2, cv import numpy as np img= cv2.imread('imm.png',0) img= cv2.medianBlur(img,5) cimg=cv2.cvtColor(img,cv2.COLOR_GRAY2B...