基于Java+Python实现的图像识别技术的停车场收费系统

目录
一、前言 1
1.1 实践目的和要求(综合实践的目的、学院有关综合实践的要求、实践起止时间等内容) 1
1.2 实践项目背景及意义(介绍项目背景和意义) 2
随着计算机技术的发展,人工智能技术也在不断地向前进步。数字图像技术在与人工智能技术相结合后焕发出蓬勃的生机,其中的图像分割和图像识别技术在深度学习的辅助下变得更加智能化。本项目将利用这两项智能化的技术来完成“车牌识别”功能,并将其融入 2
二、实践内容 5
2.1 实践过程(概述实践各阶段所从事的主要工作等) 5
(1)系统的组成与功能 5
1.1 登录: 5
1.2 管理员 5
1.3 门卫 5
1.3.1 显示当前停车场有多少空余车位 5
1.3.5 查看,可以查找车库内的车辆,并显示其入库图片 5
2.3 主要成果(具体列出自己所完成的主要成果。包括界面、计算结果、图表、结果分析、关键程序代码等) 8
实习要求:

1.2实践项目背景及意义(介绍项目背景和意义)

随着计算机技术的发展,人工智能技术也在不断地向前进步。数字图像技术在与人工智能技术相结合后焕发出蓬勃的生机,其中的图像分割和图像识别技术在深度学习的辅助下变得更加智能化。本项目将利用这两项智能化的技术来完成“车牌识别”功能,并将其融入
JavaWeb 工程中,进而完成一个“基于图像识别技术的停车场收费系统”。该系统旨在通过“快速识别车牌”、“数字化管理信息”和“手机支付”等功能方便城市中各停车场的收费和管理工作,从而极大地提高各停车场的运作效率。

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>

<script type="text/javascript" src="js/jquery-3.4.1.min.js"></script>
<link rel="stylesheet" href="css/login.css">

<script>
	function login() {
		var userName=document.getElementById("userName").value;
		var password=document.getElementById("password").value;
		var userType=document.getElementById("userType").value;
		console.log(userName+"---"+password+"---"+userType);
		$.ajax({
			url : 'user/login',
			method : 'post',
			data : {
				"userName": userName,
				"password": password,
				"userType": userType
			}, 
			dataType : 'text',
			success : function(res) {
					if(res==1){
						alert("登录成功");
						if(userType=="0")
							// 管理员页面
							window.location.replace("managerIndex.html"); 
						else
							// 门卫页面
							window.location.replace("./html/doorkeeperIndex.html");
					}else
						alert("登录失败")
			},
			error : function(data) {
				 alert("操作失败!!!");
			}
		});
	}
</script>
</head>

<body>
      
	<div class="login">
	    <h3 style="">停车场管理系统</h3>
		<div class="login-Content">
			<div class="loginItem">
				<span><label for="userName">用户名:</label></span> <input type="text"
					name="userName" id="userName">
			</div>
			<div class="loginItem">
				<span><label for="password">密码:</label></span> <input
					type="password" name="password" id="password">
			</div>
		</div>
		<div class="loginItem">
			<select id="userType">
				<option value="0">管理员</option>
				<option value="1" selected="selected">门卫</option>
			</select>
		</div>
		<div class="btn">
			<span> <input type="button" class="loginBtn" name="login"
				id="login" value="登 录" onclick="login()">
			</span>
		</div>
	</div>

</body>


</html>


在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/sheziqiong/article/details/130931347