cv2.imdecode(np.fromfile(filename, dtype=np.uint8), cv2.IMREAD_COLOR) 讲解: 1. np.fromfile() 读取图片,返回height,width,channels 2. [cv2.imdecode](http://www.voidcn.com/article/p-sabqihis-bry.html) cv2.imdecode()函数: 从指定的内存缓存中读取数据,并把数据转换(解码)成图像格式;主要用于从网络传输数据中恢复出图像。 cv2.imencode()函数: 将图片格式转换(编码)成流数据,赋值到内存缓存中;主要用于图像数据格式的压缩,方便网络传输。 img = cv2.filter2D() #https://www.cnblogs.com/lfri/p/10599420.html img = cv2.filter2D 3. cv2.GaussianBlur https://www.jianshu.com/p/bfd5dd2566bb 4. cv2.morphologyEx https://www.jianshu.com/p/dcecaf62da71 cv2.threshold https://blog.csdn.net/a19990412/article/details/81172426