基于springboot+mybatis-plus+mysql+python+tensorflow2.0波导识别管理系统

基于springboot+mybatis-plus+mysql+python+tensorflow2.0波导识别管理系统

一、系统介绍

技术框架:
前端:vue
后端:springboot
算法:python+tensorflow2.3
系统主要功能:
图片上传、波导识别、系统管理(用户管理、权限管理、菜单管理)

可训练成人脸识别、花卉识别等

二、功能展示

1.图片上传

在这里插入图片描述

2.波导识别

在这里插入图片描述

三、代码展示

package com.jf3q.cn.contrl.ht;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

import com.jf3q.cn.cons.Const;
import com.jf3q.cn.pojo.MSAdmin;
import com.jf3q.cn.service.MSAdminService;
import com.jf3q.cn.untils.PassUtils;
 

@Controller
@RequestMapping("/ht")
public class MSAdminController {

	@Autowired
	private MSAdminService adminService;

	 

	 
	@RequestMapping("/tologin")
	public String tologin(MSAdmin a,HttpServletRequest req,HttpSession session,Model model) {
		  return Const.ht+"/login";
	}
	@RequestMapping("/logout")
	public String logout(MSAdmin a,HttpServletRequest req,HttpSession session,Model model) {
		session.removeAttribute("htAdmin");
		return Const.ht+"/login";
	}
	@RequestMapping("/toindex")
	public String toindex(MSAdmin a,HttpServletRequest req,HttpSession session,Model model) {
		  return Const.ht+"/index";
	}
	@RequestMapping("/login")
	public String login(MSAdmin a,HttpServletRequest req,HttpSession session,Model model) {
		if(a.getUname()==null||a.getUname().isEmpty()) {
			model.addAttribute("msg", "用户名为空");
			return Const.ht+"/login";
		}
		if(a.getUpass()==null||a.getUpass().isEmpty()) {
			model.addAttribute("msg", "密码为空");
			return Const.ht+"/login";
		}
		a.setUpass(PassUtils.get(a.getUpass()));
		 MSAdmin la=adminService.login(a);
		 if(la==null){
			 model.addAttribute("msg", "用户名或者密码错误");
				return Const.ht+"/login";
		 }
		 session.setAttribute("htAdmin", la);
		return Const.ht+"/index";
	}

	
	
	@RequestMapping("/toupdatePwd")
	public String to_updatePwd(MSAdmin a,HttpServletRequest req,HttpSession session,Model model) {
		  return Const.ht+"/up_pwd";
	}
	@RequestMapping("/updatePwd")
	public String updatePwd(MSAdmin a,HttpServletRequest req,HttpSession session,Model model) {
		 String old_upass=req.getParameter("old_upass") ;
		 String new_upass=req.getParameter("new_upass") ;
		 String new_upass2=req.getParameter("new_upass2") ;
		 
		 a=(MSAdmin) session.getAttribute("htAdmin");
		 a=adminService.getById(a.getId());
		 if(!a.getUpass().equals(PassUtils.get(old_upass))){
			 model.addAttribute("msg", "原密码不对,修改密码失败");
			 return Const.ht+"/up_pwd";
		 }
		 if(!new_upass.equals(new_upass2)){
			 model.addAttribute("msg", "两次密码输入不一致,修改密码失败");
			 return Const.ht+"/up_pwd";
		 }
		 a.setUpass(PassUtils.get(new_upass));
		 adminService.update(a);
		 model.addAttribute("msg", "密码修改成功");
		 
		 return Const.ht+"/up_pwd";
		
	}
}

四、获取源码

基于springboot+mybatis-plus+mysql+python+tensorflow2.0波导识别管理系统

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
在这个互联网时代,客服可以说必不可少,每个电商网站都应该有一个强大的智能客服对话系统,以满足用户沟通的需求。智能客服对话系统,不仅需要人工的沟通,同时结合人工智能实现智能对话,减少人工客服的成本,势在必行。基于SpringBoot+Python的多语言前后端智能多人聊天系统课程,将以基础知识为根基,带大家完成一个强大的智能客服系统,该系统将包含以下功能:智能对话机器人、单聊、群聊、消息撤回、上线、下线通知、用户动态信息实时提示等。即时通讯和人工智能,在未来的发展趋势,必然需要大批人才,掌握这两个技术势在必行。项目是一个真实可用的项目,商业价值不言而喻。也可以基于课程的基础上进一步完善和优化,所以价值是很高的。本课程包含的技术: 开发工具为:IDEA、WebStorm、PyCharmTensorflowRNNLSTMAnacondaSpringBoot SpringCloudWebsocketSTOMPDjangoVue+Nodejs+jQuery等 课程亮点: 1.与企业接轨、真实工业界产品2.从基础到案例,逐层深入,学完即用3.市场主流的前后端分离架构和人工智能应用结合开发4.多语言结合开发,满足多元化的需求5.涵盖TensorFlow1.x+TensorFlow2.x版本6.智能机器人实战7.即时通讯实战8.多Python环境切换9.微服务SpringBoot10.集成SpringCloud实现统一整合方案 11.全程代码实操,提供全部代码和资料 12.提供答疑和提供企业技术方案咨询 课程目录:第一章、Anaconda以及TensorFlow环境和使用0、智能多人聊天系统课程说明1、智能多人聊天系统之Anaconda讲解2、智能多人聊天系统之Anaconda安装和使用3、智能多人聊天系统之Anaconda之conda命令使用4、智能多人聊天系统之TensorFlow讲解5、智能多人聊天系统之TensorFlow安装和使用6、TensorFlow常量、变量和占位符实战讲解17、TensorFlow常量、变量和占位符实战讲解28、TensorFlow原理补充讲解9、TensorFlow四则运算实战讲10、TensorFlow矩阵操作以及运算实战讲解111、TensorFlow矩阵操作以及运算实战讲解212、TensorFlow均匀分布和正态分布数据实战讲解13、智能多人聊天系统之Numpy实战讲解14、智能多人聊天系统之matplotlib实战讲解15、TensorFlow深度学习DNN讲解16、TensorFlow常用Python扩展包讲解17、TensorFlow常用回归算法以及正则化讲解18、TensorFlow损失函数定义和使用实战讲解19、TensorFlow优化器讲解以及综合案例实战讲解20、智能多人聊天系统之RNN讲解21、智能多人聊天系统之RNN种类讲解22、智能多人聊天系统之RNN代码实战23、智能多人聊天系统之LSTM讲解24、智能多人聊天系统之attention机制讲解25、智能多人聊天系统之Django环境构建及初体验26、智能多人聊天系统之Django开发27、Python章节环境侯建和项目搭建28、Python TensorFlow读取训练数据代码编写29、Python TensorFlow形成语料编码30、Python TensorFlow保存字典文件31、Python TensorFlow构建词向量32、Python TensorFlow构建lstm模型以及attention wrapper33、Python TensorFlow训练代码编写34、Python整体代码讲解35、Python运用模型代码讲解36、SpringBoot讲解以及构建web应用37、Spring Cloud注册中心构建38、智能多人聊天系统之前端Vue项目构建39、SpringBoot+Websocket群聊40、SpringBoot+Websocket昵称群聊41、SpringBoot+Websocket群聊+单聊实战42、SpringBoot+Stomp单聊143、SpringBoot+Stomp单聊244、SpringBoot+Stomp单聊+群聊45、Django Web整合TF代码讲解及Postman调试46、智能客服系统单聊群聊等项目功能代码讲解147、智能客服系统单聊群聊等项目功能代码讲解248、智能客服系统集成机器人对话代码开发讲解49、智能机器人TensorFlow2版本升级实战之训练模型代码讲解50、智能机器人TensorFlow2版本升级实战之预测代码讲解 51、智能机器人TensorFlow2版本升级实战补充讲解
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小码叔

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值