Parking lot charging system based on image recognition technology implemented by Java+Python

Contents
1. Preface 1
1.1 Purpose and requirements of practice (the purpose of comprehensive practice, requirements of the college for comprehensive practice, start and end time of practice, etc.) 1 1.2
Background and significance of practical projects (introduce project background and significance) 2
With the development of computer technology , artificial intelligence technology is also constantly advancing. Digital image technology is full of vitality after being combined with artificial intelligence technology, in which image segmentation and image recognition technology become more intelligent with the assistance of deep learning. This project will use these two intelligent technologies to complete the "license plate recognition" function and integrate them into 22.
Practice content 5
2.1 Practice process (summarize the main work in each stage of practice, etc.) 5
(1) System Composition and function 5
1.1 Login: 5
1.2 Administrator 5
1.3 Doorman 5
1.3.1 Display the number of vacant parking spaces in the current parking lot 5
1.3.5 View, you can find the vehicles in the garage and display their storage pictures 5
2.3 Main results ( Specifically list the main achievements you have completed. Including interface, calculation results, charts, result analysis, key program codes, etc.) 8
Internship requirements:

1.2 Practice project background and significance (introduce project background and significance)

With the development of computer technology, artificial intelligence technology is also constantly advancing. Digital image technology is full of vitality after being combined with artificial intelligence technology, in which image segmentation and image recognition technology become more intelligent with the assistance of deep learning. This project will use these two intelligent technologies to complete the "license plate recognition" function, and integrate it into the
JavaWeb project, and then complete a "parking lot fee system based on image recognition technology". The system aims to facilitate the charging and management of parking lots in the city through functions such as "quick license plate recognition", "digital management information" and "mobile payment", thereby greatly improving the operating efficiency of each parking lot.

<!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>


insert image description here
insert image description here
insert image description here
insert image description here
insert image description here
insert image description here
insert image description here
insert image description here
insert image description here
insert image description here
insert image description here

Guess you like

Origin blog.csdn.net/sheziqiong/article/details/130931347