如何在Python中读取文件并将其转换为二进制图像

如何在Python中读取文件并将其转换为二进制图像

问题描述:

我是Python的新手,我想阅读jpg,png之类的图像.并将其转换为二进制图像.这是我的工作:

I am new to Python, I want to read a image like jpg,png. and convert it to binary image. Here is my work:

from PIL import Image
import numpy



def main( ):
    name= 'b.jpg'

    img= Image.open (name);
    for pixel in iter(img.getdata()):
        print(pixel)

    img.convert("1").show();

    del image;

if __name__=='__main__':
    main()

这可能是您的解决方案:

This could be your solution:

# Read Image 
img= Image.open(file_path)  
# Convert Image to Numpy as array 
img = np.array(img)  
# Put threshold to make it binary
binarr = np.where(img>128, 255, 0)
# Covert numpy array back to image 
binimg = Image.fromarray(binarr)