• 【657】深度学习模型预测单张图片


      直接用 predict 函数,batch_size 设置为 1

      代码如下:

    # 一个图片预测
    from PIL import Image
    import numpy as np
    from tensorflow.keras.preprocessing.image import load_img
    
    # 图片转为矩阵输入数据
    def img2x(img_path):
        img = Image.open(img_path)
        x = np.array(img) / 255
        x = np.expand_dims(x, axis=0)
        return x
    
    img_name = input("Input image name: ")
    load_img("../models_Res-U-Net/alex_google_map/" + img_name + ".png").show()
    img_path = "../models_Res-U-Net/alex_google_map/" + img_name + ".png"
    
    x = img2x(img_path)
    x = x[:,:,:,:3]
    # 直接通过模型预测,得到输出数据
    y = model.predict(x, batch_size=1)[0]
    # 对于概率数据进行判断得到二值图
    mask = (y > 0.5).astype('uint8')
    img = keras.preprocessing.image.array_to_img(mask)
    img.show()
    

      效果如下:

  • 相关阅读:
    标签,css,排版
    浏览器的内核
    焦点事件
    cookie
    浏览器的行为
    百叶窗分析
    水仙花数
    递归函数
    拖拽的问题解决
    正则的具体
  • 原文地址:https://www.cnblogs.com/alex-bn-lee/p/15230005.html
Copyright © 2020-2023  润新知