How to identify and read American driver license information on Android devices
According to the American Association of motor vehicle managers (AAMVA https://www.aamva.org/DL-ID-Card-Design-Standard/ )According to the regulations of PDF417, the US driver's license uses PDF417 code, as shown in the following figure:
Google Mobile Vision SDK
The Google service supports driver license resolution. You can find the correspond ...
Posted by colinexl on Tue, 02 Jun 2020 08:32:46 -0700
Introduction to antagonistic training - trying to deceive a model
Author: Zhi Guangda
When we are actually deploying a machine learning system, one of the most important things is the robustness of the system. We hope that the system will not only be effective for most cases, but also be truly reliable, such as being able to recognize attacks from others (deceiving your classification model).Therefore, the to ...
Posted by deadlyp99 on Tue, 02 Jun 2020 05:01:50 -0700
Spring boot configures modular Services - one configuration is used everywhere
Configuring the service module is a bit like the configuration center, but the function is not so powerful for the time being. Later, the source address will be updated after improvement.
catalog
Project function introduction
Project core configuration code
Environment configuration
Hidden configuration of MVC static resources
Project f ...
Posted by lmg on Fri, 29 May 2020 07:21:25 -0700
Istio Sidecar injection principle
concept
In short, Sidecar injection adds the configuration of additional containers to the Pod template. This refers to the Pod in which the Envoy container is applied.
Currently, the containers required by Istio service grid are:
Istio init is used to set iptables rules so that inbound / outbound traffic passes through the Sidecar agent.
Initi ...
Posted by asparagus on Mon, 25 May 2020 05:12:54 -0700
Python3 selenium 3 learning from framework implementation selenium makes you get twice the result with half the effort
This article thanks the following documents or instructions for their reference.Selenium Python Chinese documentSelenium DocumentationWebdriver reference
If there is any error, please point out in the comment area. The author will change it immediately. The article is moved from my personal CSDN, so there is no watermark
Environmental d ...
Posted by shaunie123 on Mon, 25 May 2020 00:40:14 -0700
How to run a front-end angular project
1. Install first node.js
Go to the official website to download and install:
https://nodejs.org/en/
2. Download pkg file and install it on mac
3. After the installation, verify whether it is successful at the terminal
$ npm -v
6.14.4
$ node -v
v12.16.3
4. Install angular console
npm install -g @angular/cli
This installs the comma ...
Posted by the max on Fri, 22 May 2020 07:47:19 -0700
Log mysql operations
Now I want to compare the differences before and after php web page execution, but I still can't find better software
Add, delete, and change the kind that is recorded.
Then MySQL 5 is discovered by browsing the official documentation.1 has one Common Query Log .So try:
#cd /Applications/XAMPP/xamppfiles/bin
cd /Appl ...
Posted by Goofan on Fri, 15 May 2020 09:17:40 -0700
Lifecycle aware component
brief introduction
Lifecycle is one of Google's recommended architecture components
Lifecycle aware components can perform actions in response to changes in the lifecycle state of another component, such as Activity and Fragment. These components help you write more organized and often streamlined code that is easier to maintain.
By using life ...
Posted by killerofet on Wed, 13 May 2020 03:20:25 -0700
Secondary development of UAV SDK based on Dajiang
Secondary development of UAV SDK based on Dajiang
In the near future, the company needs to develop a mobile APP based on the Dajiang UAV SDK to cooperate with the background to realize the management of UAV. Of course, Dajiang itself also provides us with a management platform --- Dajiang Sikong. Through the official APP of Dajiang and the back ...
Posted by n00byboy on Thu, 07 May 2020 01:28:29 -0700
JS Objects and Prototypes
I. Objects of JS
1.1 Several ways to create objects
1.1.1 Create Objects by Literal Quantity
In js, a pair of {} is actually an object
var person = {
name: "tom",
age: 23,
read: function () {
console.log(name, ": read book")
}
}
1.1.2 via the constructor of the sys ...
Posted by lunarul on Wed, 06 May 2020 18:06:59 -0700