美文网首页
94. numpy转换为image

94. numpy转换为image

作者: 十里江城 | 来源:发表于2019-12-22 15:49 被阅读0次
        from PIL import Image
        # 数组表示的一个图像images[i],转换成img_width,img_height尺寸的数组info
        info = np.reshape(images[i], (img_width, img_height))
        # 将info转成为uint8格式,否则报错"cannot convert this type"
        image = Image.fromarray(np.uint8(info)).convert('L')
    

    待转换的数组image[i]:
    [ 70 80 82 ... 106 109 82]
    转换后的图像:


    相关文章

      网友评论

          本文标题:94. numpy转换为image

          本文链接:https://www.haomeiwen.com/subject/xsponctx.html