IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> python中使用html前端页面显示图像预测结果(Pycharm) -> 正文阅读

[Python知识库]python中使用html前端页面显示图像预测结果(Pycharm)

1.训练的权重文件:

自己训练的权重文件,其中数据集来自身边收集,只训练的5个类别:
分别是:cabbage-蔬菜,car-汽车,dog-狗,phone-手机,person-人:
链接:https://pan.baidu.com/s/1GY9_LDxzrvYYJvu3B2yLdQ
提取码:ha6l
注:这个权重文件是自己训练的,并且是采用迁移学习的方法,效果比不用迁移学习要好很多,但是毕竟是自己训练权重文件,数据集还是少了很多,所以你自己在进行图像识别的时候效果不一定好。

2.文件的结构:

在这里插入图片描述

3.测试结果:

点击运行predict.py文件:
在这里插入图片描述
在这里插入图片描述
注意这里的路由:所以如果你是像我这样写的路由方式,那么你在浏览器中输入的地址应该是这样:http://127.0.0.1:5000/index
在这里插入图片描述
在这里插入图片描述

4.主程序文件predict.py文件:

import os
import cv2
import numpy as  np
from PIL import Image,ImageTk
from tensorflow.keras.models  import load_model
from flask import  Flask ,render_template,request
from tensorflow.keras.preprocessing.image import img_to_array
app=Flask(__name__)

#加载模型
model=load_model('model/InceptionV3.h5')
classes={0:'cabbage',1:'car',2:'dog',3:'phone',4:'person'}
#显示图片
def imshow(img_path):
    """
    :param img_path: 图片路径
    :return:
    """
    image = cv2.imread(img_path)
    print(type(image))
    image = cv2.cvtColor(image, cv2.COLOR_RGBA2BGRA)
    cv2.imshow('image', image)
    cv2.waitKey(0)

#对图像进行预处理
def preprocess_image(img_path,target_size):
    """
    :param img_path: 图片路径
    :param target_size: 图片大小
    :return:
    """
    image=Image.open(img_path)
    if image.mode!='RGB':
        image=image.convert('RGB')
    image=image.resize(target_size)
    image=img_to_array(image)
    image=image/255.0
    image=np.expand_dims(image,axis=0)
    return image

@app.route('/index',methods=['POST','GET'])
def index():
    if request.method=='POST':
        file=request.files.get('filename')
        if file is None:
            return {
                'message':'文件上传失败'
            }
        file_name=file.filename.replace("","")
        #打印相关的参数查看
        print('file: {}'.format(file))
        print('filename: {}'.format(file.filename))
        print('上传文件: {}'.format(file_name))

        #os.path.dirname 去掉文件名,返回目录
        file.save(os.path.dirname(__file__)+'\\static\\'+file_name)
        #获取当前的图片路径
        img_path=os.path.dirname(__file__)+'\\static\\'+file_name
        image=preprocess_image(img_path,target_size=(224,224))
        #预测的结果转换为列表形式
        predictions=model.predict(image)[0].tolist()
        max_pred=int(np.argmax(predictions))
        print('predictions: {}'.format(predictions))
        print('预测类别: {}'.format(classes[max_pred]))
        #读取当前的图片路径并显示
        # imshow(img_path)
        response={
            'predictions':{
                'cabbage':predictions[0],
                'car':predictions[1],
                'dog':predictions[2],
                'phone':predictions[3],
                'person':predictions[4]
            },
            'image':'./static/'+file_name,
        }
        print('cabbage: {}'.format(response['predictions']['cabbage']))
        print('car: {}'.format(response['predictions']['car']))
        print('dog: {}'.format(response['predictions']['dog']))
        print('phone: {}'.format(response['predictions']['phone']))
        print('person: {}'.format(response['predictions']['person']))
        return render_template('predict.html',response=response)
       
    if request.method=='GET':
        response={
            'predictions':'',
            'image':''
        }
        return render_template('predict.html',response=response)

if __name__=='__main__':
    print('Pycharm')
    app.run(debug=True)

在这里插入图片描述

5.前端文件predict.html:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="static/predict.css">
    <title>file</title>
</head>
<body>
  <div id="h1">
      <h1>图像预测</h1>
  </div>
  <div id="form">
      <form action="http://127.0.0.1:5000/index" method="POST" enctype="multipart/form-data">
            <input type="file" name="filename" value="点击上传图片"/>
            <br>
           <input type="submit" name="submit" value="点击预测"/>
           <input type="reset" name="reset" value="点击重置">
      </form>
  </div>
<!--  {{response.image}}-->
  <div id="img">
        <img src={{response.image}}>
  </div>
  <div id="font">预测结果</div>
  <div id="predict">
        cabbage: {{response['predictions']['cabbage']}}
        car:     {{response['predictions']['car']}}
        dog:     {{response['predictions']['dog']}}
        phone:   {{response['predictions']['phone']}}
        person:  {{response['predictions']['person']}}
  </div>

</body>
</html>

在这里插入图片描述

6.CSS文件predict.css:

关于CSS文件的创建和在html中导入CSS文件,看我这篇博客:
https://mydreamambitious.blog.csdn.net/article/details/123232040

div {
    width: 200px;
    height: 50px;
    margin: auto;
    left: 500px;
    font-weight: bold;
    font-family: Arial, Helvetics, sans-serlf;
    font-size: 20px;
    color: '#00FF7F';
    border: 2px solid '#000000';
    margin-bottom: 50px;
}

#form {
    width: 200px;
    height: 50px;
    font-size: 10px;
    font-weight: 400;
}

#form input {
    cursor: pointer;
    margin-bottom: 10px;
    margin-right: 10px;
}
#img {
    width: 500px;
    height: 400px;
    margin-left: 400px;
}

#img img {
    width: 500px;
    height: 500px;
}
#predict {
    width: 50px;
    height: 20px;
    margin-top: -50px;
    margin-left: 980px;
}

#font {
    width: 100px;
    height: 20px;
    margin-top: -400px;
    margin-left: 900px;
}

参考的博客:
https://blog.csdn.net/qq_43574741/article/details/117264416
其实关于前端显示图片这一块也可以使用js写,只是稍微有点不怎么好理解。

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-03-06 12:58:23  更:2022-03-06 13:00:28 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 22:24:34-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码